last.js 314 B

12345678910111213
  1. "use strict";
  2. exports.__generic = function (t, a) { a(t.call(this), this[this.length - 1]); };
  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. x[450] = {};
  10. a(t.call(x), x[450], "Sparse");
  11. };