github-pages-deploy-action/node_modules/number-is-nan/index.js
2019-11-19 07:48:29 -05:00

5 lines
82 B
JavaScript

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