diff options
Diffstat (limited to '')
| -rw-r--r-- | node_modules/math-intrinsics/isNaN.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/node_modules/math-intrinsics/isNaN.js b/node_modules/math-intrinsics/isNaN.js new file mode 100644 index 0000000..e36475c --- /dev/null +++ b/node_modules/math-intrinsics/isNaN.js @@ -0,0 +1,6 @@ +'use strict'; + +/** @type {import('./isNaN')} */ +module.exports = Number.isNaN || function isNaN(a) { + return a !== a; +}; |