32f595829168ee6e306024bd44b585491a29ec97
[platform/framework/web/crosswalk-tizen.git] /
1 'use strict';
2
3 module.exports = function (t, a) {
4         a(t(null), false, "Null");
5         a(t(''), true, "Empty string");
6         a(t(12), false, "Number");
7         a(t(false), false, "Boolean");
8         a(t(new Date()), false, "Date");
9         a(t(new String('raz')), true, "String object");
10         a(t('asdfaf'), true, "String");
11 };