npm and error messages

This commit is contained in:
2018-10-27 03:51:47 -05:00
parent 692ab70565
commit 025a403027
29601 changed files with 2759363 additions and 14 deletions

12
node_modules/es5-ext/test/object/is-integer.js generated vendored Normal file
View File

@@ -0,0 +1,12 @@
"use strict";
module.exports = function (t, a) {
a(t(undefined), false, "Undefined");
a(t(null), false, "Null");
a(t(2), true, "Number");
a(t(-2), true, "Negative");
a(t(2.34), false, "Float");
a(t("23"), true, "Numeric string");
a(t(NaN), false, "NaN");
a(t(Infinity), false, "Infinity");
};