frappe_docker/frappe-bench/node_modules/number-is-nan/index.js
2017-07-31 15:51:51 +05:30

4 lines
82 B
JavaScript

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