Blame view

node_modules/es-abstract/helpers/isNaN.js 73 Bytes
ce4c83ff   wxy   初始提交
1
2
3
  module.exports = Number.isNaN || function isNaN(a) {
  	return a !== a;
  };