Matjaz Mesnjak da65f00f6c Initial commit.
2017-09-20 23:19:33 +02:00

5 lines
82 B
JavaScript

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