projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
faa9c32a8537ab51761ea5e1fda7bafad071e55d
[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.5), NaN, "Less than 0");
6
a(t(0), -Infinity, "0");
7
a(t(1), 0, "1");
8
a(t(Infinity), Infinity, "Infinity");
9
a(t(3).toFixed(15), '1.584962500721156', "Other");
10
};