mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-25 05:44:06 -06:00
9 lines
192 B
JavaScript
9 lines
192 B
JavaScript
"use strict";
|
|
|
|
module.exports = function (t, a) {
|
|
var x = {};
|
|
a(t.call([]), true, "Empty");
|
|
a(t.call({ length: 0 }), true, "Empty lists");
|
|
a(t.call([1, x, "raz"]), false, "Non empty");
|
|
};
|