projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
f56ca385fa5a734822ebea0eb6daa866b7ba3437
[platform/framework/web/crosswalk-tizen.git]
/
1
'use strict';
2
3
var Set = require('../../');
4
5
module.exports = function (t, a) {
6
a(t.call(new Set(), Boolean), true, "Empty set");
7
a(t.call(new Set([2, 3, 4]), Boolean), true, "Truthy");
8
a(t.call(new Set([2, 0, 4]), Boolean), false, "Falsy");
9
};