diff options
Diffstat (limited to 'school/node_modules/lodash/_baseIsNaN.js')
-rw-r--r-- | school/node_modules/lodash/_baseIsNaN.js | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/school/node_modules/lodash/_baseIsNaN.js b/school/node_modules/lodash/_baseIsNaN.js deleted file mode 100644 index 316f1eb..0000000 --- a/school/node_modules/lodash/_baseIsNaN.js +++ /dev/null @@ -1,12 +0,0 @@ -/** - * The base implementation of `_.isNaN` without support for number objects. - * - * @private - * @param {*} value The value to check. - * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`. - */ -function baseIsNaN(value) { - return value !== value; -} - -module.exports = baseIsNaN; |