618ba264cba08d23c615961c7d4ff6b36487b524
[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), 1, "Zero");
6         a(t(Infinity), Infinity, "Infinity");
7         a(t(-Infinity), Infinity, "-Infinity");
8         a(t(1), 1.5430806348152437, "1");
9 };