]> git.r.bdr.sh - rbdr/dotfiles/blob
07b32d8e8cbf9b0e83dad5aac4a12b31eded6664
[rbdr/dotfiles] /
1 'use strict';
2
3 module.exports = {
4 __generic: function (t, a) {
5 var x = {};
6 a.deep(t.call(this, this, [this[0], this[2], x]), [x]);
7 },
8 "": function (t, a) {
9 var x = {}, y = {};
10
11 a.deep(t.call([x, y]), [x, y], "No arguments");
12 a.deep(t.call([x, 1], [], []), [x, 1], "Empty arguments");
13 a.deep(t.call([1, 'raz', x], [2, 'raz', y], [2, 'raz', x]), [1, y]);
14 }
15 };