first.js 285 B

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