shim.js 176 B

12345678
  1. "use strict";
  2. module.exports = function (t, a) {
  3. a(t(2), true, "Number");
  4. a(t("23"), false, "Not numeric");
  5. a(t(NaN), false, "NaN");
  6. a(t(Infinity), false, "Infinity");
  7. };