1,Object.is() /* ES6 PolyFill */
if(!Object.js){
Object.is=function(x,y){
if(x===y){
return x!==0 || 1/x===1/y
}else{
return x!==x && y!==y
}
}
}
时间: 2024-10-12 03:59:34
1,Object.is() /* ES6 PolyFill */
if(!Object.js){
Object.is=function(x,y){
if(x===y){
return x!==0 || 1/x===1/y
}else{
return x!==x && y!==y
}
}
}