source: node_modules/core-js-pure/internals/same-value.js@ e48199a

main
Last change on this file since e48199a was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 322 bytes
Line 
1'use strict';
2// `SameValue` abstract operation
3// https://tc39.es/ecma262/#sec-samevalue
4// eslint-disable-next-line es/no-object-is -- safe
5module.exports = Object.is || function is(x, y) {
6 // eslint-disable-next-line no-self-compare -- NaN check
7 return x === y ? x !== 0 || 1 / x === 1 / y : x !== x && y !== y;
8};
Note: See TracBrowser for help on using the repository browser.