Blame view

node_modules/number-is-nan/index.js 82 Bytes
aaac7fed   liuqimichale   add
1
2
3
4
  'use strict';
  module.exports = Number.isNaN || function (x) {
  	return x !== x;
  };