projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
1dcc993ed0ec739654ed3c2f5c00f7f60eaaa4f4
[platform/framework/web/crosswalk-tizen.git]
/
1
'use strict';
2
3
var Set = require('../../');
4
5
module.exports = function (t, a) {
6
var content = ['raz', 2, true], set = new Set(content);
7
8
a(t.call(set), true);
9
10
set = new Set();
11
a(t.call(set), undefined);
12
};