Sha256: bfa62c40ccc014911f48c7cced5add9aae2db2cf815f482ceb0e9549e0a22cc7
Contents?: true
Size: 350 Bytes
Versions: 47
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
47 entries across 47 versions & 3 rubygems