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