Sha256: 3a27f373c852ae3b3cb90101f29c03205adf95ba37adf632173ec674d0068b91
Contents?: true
Size: 358 Bytes
Versions: 47
Compression:
Stored size: 358 Bytes
Contents
"use strict"; module.exports = function (t, a) { var y = {}, z = {}, x = [9, z, 5, y, "foo"]; t.call(x, y); a.deep(x, [9, z, 5, "foo"]); t.call(x, {}); a.deep(x, [9, z, 5, "foo"], "Not existing"); t.call(x, 5); a.deep(x, [9, z, "foo"], "Primitive"); x = [9, z, 5, y, "foo"]; t.call(x, z, 5, "foo"); a.deep(x, [9, y], "More than one argument"); };
Version data entries
47 entries across 47 versions & 3 rubygems