72c8aa6daf4a3ac0b32e3949cf86ff72a8de2b57
[platform/framework/web/crosswalk-tizen.git] /
1 'use strict';
2
3 module.exports = function (t, a) {
4         a(t('arar'), false, "String");
5         a(t(12), false, "Number");
6         a(t(true), false, "Boolean");
7         a(t(null), false, "Null");
8         a(t(new Date()), true, "Date");
9         a(t(new String('raz')), true, "String object");
10         a(t({}), true, "Plain object");
11         a(t(/a/), true, "Regular expression");
12         a(t(function () {}), true, "Function");
13 };