first.js 286 B

12345678910111213
  1. "use strict";
  2. exports.__generic = function (t, a) {
  3. a(t.call(this), this[0]);
  4. };
  5. exports[""] = function (t, a) {
  6. var x;
  7. a(t.call([]), undefined, "Empty");
  8. a(t.call(new Array(234), undefined, "Sparse empty"));
  9. x = new Array(2342);
  10. x[434] = {};
  11. a(t.call(x), x[434], "Sparse");
  12. };