clear.js 158 B

1234567
  1. "use strict";
  2. module.exports = function (t, a) {
  3. var arr = [1, 2, {}, 4];
  4. a(t.call(arr), arr, "Returns same array");
  5. a.deep(arr, [], "Empties array");
  6. };