Sha256: 24689680e19ff3a65d0529a6d65ffe55678db513f84a583bdd6c2eb9d3400b9c
Contents?: true
Size: 378 Bytes
Versions: 44
Compression:
Stored size: 378 Bytes
Contents
"use strict"; var f = function (a, b) { return ["a", arguments.length, a, b]; } , g = function (a) { return ["b", arguments.length].concat(a); } , h = function (a) { return ["c", arguments.length].concat(a); }; module.exports = function (t, a) { a.deep(t.call(h, g, f)(1, 2), ["c", 1, "b", 1, "a", 2, 1, 2]); a.deep(t(h, g, f)(1, 2), ["c", 1, "b", 1, "a", 2, 1, 2]); };
Version data entries
44 entries across 44 versions & 2 rubygems