All Downloads are FREE. Search and download functionalities are using the official Maven repository.

polyfills.ObjectIs.js Maven / Gradle / Ivy

The newest version!
if (!Object.is) {
  Object.is = function(v1, v2) {
    if (v1 === v2) {
    	return v1 !== 0 || 1 / v1 === 1 / v2; 
    } else {
      return v1 !== v1 && v2 !== v2;
    }
  };
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy