UNPKG

@maplibre/maplibre-gl-style-spec

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