• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1var $isNaN = Number.isNaN || function (a) { return a !== a; };
2
3module.exports = Number.isFinite || function (x) { return typeof x === 'number' && !$isNaN(x) && x !== Infinity && x !== -Infinity; };
4