mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-21 02:28:35 +00:00
10 lines
261 B
JavaScript
Vendored
10 lines
261 B
JavaScript
Vendored
"use strict";
|
|
|
|
module.exports = function (t, a) {
|
|
a(t("arar"), false, "String");
|
|
a(t(12), false, "Number");
|
|
a(t(true), false, "Boolean");
|
|
a(t(new Date()), true, "Date");
|
|
a(t(new String("raz")), false, "String object");
|
|
a(t({}), false, "Plain object");
|
|
};
|