2017-09-13 07:52:34 +02:00

5 lines
82 B
JavaScript
Vendored

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