META-INF.resources.bower_components.globalize.src.util.object.extend.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jwebmp-globalize Show documentation
Show all versions of jwebmp-globalize Show documentation
The JWebSwing implementation for a full Globalization
define(function () {
return function () {
var destination = arguments[0],
sources = [].slice.call(arguments, 1);
sources.forEach(function (source) {
var prop;
for (prop in source) {
destination[prop] = source[prop];
}
});
return destination;
};
});
© 2015 - 2025 Weber Informatics LLC | Privacy Policy