Show More
Commit Description:
change to encrypted cookies
Commit Description:
change to encrypted cookies
References:
File last commit:
Show/Diff file:
Action:
node_modules/object-is/index.js
| 21 lines
| 352 B
| application/javascript
| JavascriptLexer
|
r789 | 'use strict'; | |||
// http://www.ecma-international.org/ecma-262/6.0/#sec-object.is | ||||
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; | ||||
}; | ||||