All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.core-js.modules._same-value.js Maven / Gradle / Ivy

The newest version!
// 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;
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy