projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
b6b89c15889dc4af39837b03ba53e016fbd67e07
[platform/framework/web/crosswalk-tizen.git]
/
1
'use strict';
2
3
var is = require('../../../object/is');
4
5
module.exports = function (t, a) {
6
a(is(t(0), +0), true, "+0");
7
a(is(t(-0), -0), true, "-0");
8
a(t({}), NaN, true, "NaN");
9
a(t(-234234234), -1, "Negative");
10
a(t(234234234), 1, "Positive");
11
};