File size: 82 Bytes
1a3d6ba |
1 2 3 4 5 |
'use strict';
module.exports = Number.isNaN || function (x) {
return x !== x;
};
|
1a3d6ba |
1 2 3 4 5 |
'use strict';
module.exports = Number.isNaN || function (x) {
return x !== x;
};
|