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

polyfills.Object.is.raw.js Maven / Gradle / Ivy

The newest version!

// Object.is
Object.is = function is(a, b) {
	return (a === b && (a !== 0 || 1 / a === 1 / b)) || (a !== a && b !== b);
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy