clear.js 158 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 "use strict"; module.exports = function (t, a) { var arr = [1, 2, {}, 4]; a(t.call(arr), arr, "Returns same array"); a.deep(arr, [], "Empties array"); };