1
0
CompleteNodeJS/notes-app/node_modules/number-is-nan/index.js
Jason Williams 6528d7204a Section 20
2019-08-11 12:15:16 -06:00

5 lines
82 B
JavaScript

'use strict';
module.exports = Number.isNaN || function (x) {
return x !== x;
};