mirror of
https://github.com/wishthis/wishthis.git
synced 2026-08-03 17:31:52 -04: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");
|
|
};
|