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

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

The newest version!

// Object.defineProperties
Object.defineProperties = function defineProperties(object, descriptors) {
	for (var property in descriptors) {
		Object.defineProperty(object, property, descriptors[property]);
	}

	return object;
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy