3f3985c3a055226aec81f5feee9422b327ce4540
[platform/framework/web/crosswalk-tizen.git] /
1 'use strict';
2
3 module.exports = function (t, a) {
4         a(t(2), true, "Number");
5         a(t(2.34), false, "Float");
6         a(t('23'), false, "Not numeric");
7         a(t(NaN), false, "NaN");
8         a(t(Infinity), false, "Infinity");
9 };