Files
2025-04-21 16:03:20 +02:00

9 lines
192 B
JavaScript
Vendored

"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");
};