Blame view

node_modules/es-abstract/helpers/isNaN.js 73 Bytes
2a09d1a4   liuqimichale   添加宜春 天水 宣化
1
2
3
  module.exports = Number.isNaN || function isNaN(a) {
  	return a !== a;
  };