Your IP : 216.73.216.102


Current Path : /home/kamilrogam/komp/2018/180513/git/simpleKanban/node_modules/core-js/modules/
Upload File :
Current File : /home/kamilrogam/komp/2018/180513/git/simpleKanban/node_modules/core-js/modules/_math-sign.js

// 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;
};