Sha256: c2c3b909b581bb1f9b98a1eeb24b4d20e96572ce608e16846872188a2b3a4af1
Contents?: true
Size: 350 Bytes
Versions: 29
Compression:
Stored size: 350 Bytes
Contents
'use strict'; module.exports = function (t, a) { var x = {}; a(t.call([]), true, "Empty"); a(t.call({}), true, "Empty lists"); a(t.call([1, x, 'raz']), true, "Uniq"); a(t.call([1, x, 1, 'raz']), false, "Not Uniq: primitive"); a(t.call([1, x, '1', 'raz']), true, "Uniq: primitive"); a(t.call([1, x, 1, {}, 'raz']), false, "Not Uniq: Obj"); };
Version data entries
29 entries across 19 versions & 7 rubygems