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

node_modules.core-js.modules._math-sign.js Maven / Gradle / Ivy

There is a newer version: 3.3.1
Show newest version
// 20.2.2.28 Math.sign(x)
module.exports = Math.sign || function sign(x) {
  // eslint-disable-next-line no-self-compare
  return (x = +x) == 0 || x != x ? x : x < 0 ? -1 : 1;
};




© 2015 - 2025 Weber Informatics LLC | Privacy Policy