00d05bdfe346d7ab8f8d36acb948e0fed41008cd
[platform/framework/web/crosswalk-tizen.git] /
1 'use strict';
2
3 module.exports = function (t, a) {
4         a(t({}), 0, "Not numeric");
5         a(t(-4), 4294967292, "Negative");
6         a(t(133432), 133432, "Positive");
7         a(t(8589934592), 0, "Greater than maximum");
8 };