isNaN.js 73 B

123
  1. module.exports = Number.isNaN || function isNaN(a) {
  2. return a !== a;
  3. };