isNaN.js 88 B

12345
  1. 'use strict';
  2. module.exports = Number.isNaN || function isNaN(a) {
  3. return a !== a;
  4. };