shim.js 138 B

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