projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
43ab68b848f61a2e4d78804829942ba15a681933
[platform/framework/web/crosswalk-tizen.git]
/
1
'use strict';
2
3
module.exports = function (t, a) {
4
a(t({}), NaN, "NaN");
5
a(t(0), 0, "Zero");
6
a(t(Infinity), Infinity, "Infinity");
7
a(t(-Infinity), -Infinity, "-Infinity");
8
a(t(-1), -1, "-1");
9
a(t(1), 1, "1");
10
a(t(2), 1.2599210498948732, "Ohter");
11
};