Show More
Commit Description:
use uuid cookie
Commit Description:
use uuid cookie
File last commit:
Show/Diff file:
Action:
node_modules/core-js/modules/_same-value.js | 5 lines | 190 B | application/javascript | JavascriptLexer |
// 7.2.9 SameValue(x, y)
module.exports = Object.is || function is(x, y) {
// eslint-disable-next-line no-self-compare
return x === y ? x !== 0 || 1 / x === 1 / y : x != x && y != y;
};