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

main
Last change on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 5 days ago

F4 Finalna Verzija

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