package.src.style-spec.util.extend.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mapbox-gl Show documentation
Show all versions of mapbox-gl Show documentation
A WebGL interactive maps library
The newest version!
// @flow
export default function (output: any, ...inputs: Array) {
for (const input of inputs) {
for (const k in input) {
output[k] = input[k];
}
}
return output;
}