github-pages-deploy-action/node_modules/number-is-nan/index.js

5 lines
82 B
JavaScript
Raw Normal View History

2019-11-19 20:48:29 +08:00
'use strict';
module.exports = Number.isNaN || function (x) {
return x !== x;
};