2f7eb638f5fcc5a3dc23f83d31ffa1ee26d052123513e57be4ccf1a66293a11b650a3a9986ed3994cac7757e0805c616742b0be30433fb0d86e5eccccdbb6c 269 B

1234567
  1. // http://jfbastien.github.io/papers/Math.signbit.html
  2. var $export = require('./_export');
  3. $export($export.S, 'Math', { signbit: function signbit(x) {
  4. // eslint-disable-next-line no-self-compare
  5. return (x = +x) != x ? x : x == 0 ? 1 / x == Infinity : x > 0;
  6. } });