5205d1c26025206fdbc4f14bc3f101696aa7c9f8
[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('23'), false, "Not numeric");
6         a(t(NaN), false, "NaN");
7         a(t(Infinity), false, "Infinity");
8 };