projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
a769b39b85b6441b8af74276a593db930a20c05f
[platform/framework/web/crosswalk-tizen.git]
/
1
'use strict';
2
3
module.exports = function (t, a) {
4
a(t(1), 31, "1");
5
a(t(1000), 22, "1000");
6
a(t(), 32, "No arguments");
7
a(t(Infinity), 32, "Infinity");
8
a(t(-Infinity), 32, "-Infinity");
9
a(t("foo"), 32, "String");
10
a(t(true), 31, "Boolean");
11
a(t(3.5), 30, "Float");
12
};