5 lines
82 B
JavaScript
Raw Permalink Normal View History

2019-09-12 23:38:13 +09:00
'use strict';
module.exports = Number.isNaN || function (x) {
return x !== x;
};