UNPKG

maplibre-gl

Version:

BSD licensed community fork of mapbox-gl, a WebGL interactive maps library

9 lines (8 loc) 209 B
export default function extendBy(output: any, ...inputs: Array<any>) { for (const input of inputs) { for (const k in input) { output[k] = input[k]; } } return output; }