]> git.r.bdr.sh - rbdr/dotfiles/blob
87fde0357ef1b007323459d45ebfdd1dcd9a2b59
[rbdr/dotfiles] /
1 'use strict';
2
3 exports.__generic = function (t, a) {
4 a(t.call(this), this[0]);
5 };
6 exports[''] = function (t, a) {
7 var x;
8 a(t.call([]), undefined, "Empty");
9 a(t.call(new Array(234), undefined, "Sparse empty"));
10 x = new Array(2342);
11 x[434] = {};
12 a(t.call(x), x[434], "Sparse");
13 };