Submit
Path:
~
/
/
usr
/
share
/
nodejs
/
object-is
/
File Content:
implementation.js
'use strict'; var numberIsNaN = function (value) { return value !== value; }; module.exports = function is(a, b) { if (a === 0 && b === 0) { return 1 / a === 1 / b; } if (a === b) { return true; } if (numberIsNaN(a) && numberIsNaN(b)) { return true; } return false; };
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
auto.js
36 bytes
0644
implementation.js
286 bytes
0644
index.js
409 bytes
0644
package.json
2083 bytes
0644
polyfill.js
181 bytes
0644
shim.js
306 bytes
0644
N4ST4R_ID | Naxtarrr