mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-22 11:08:35 +00:00
8 lines
176 B
JavaScript
Vendored
8 lines
176 B
JavaScript
Vendored
"use strict";
|
|
|
|
module.exports = function (t, a) {
|
|
a(t(2), true, "Number");
|
|
a(t("23"), false, "Not numeric");
|
|
a(t(NaN), false, "NaN");
|
|
a(t(Infinity), false, "Infinity");
|
|
};
|