last.js 315 B

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