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

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • 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.