Sha256: 04b5f923010f53c311502b96b48e5a14e82ba4e11a0df73e3d08ce6b1345bab0
Contents?: true
Size: 358 Bytes
Versions: 29
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
29 entries across 19 versions & 7 rubygems