tethys.backend/resources/js/Components/Map/utilities.ts
Arno Kaimbacher 12b02a0d7d
All checks were successful
Explore-Gitea-Actions
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 11s
- add '.gitea/workflows/build.yaml'
- npm updates
- add map tool for drawing rectangles
2023-04-12 09:26:45 +02:00

12 lines
255 B
TypeScript

// extend an object with properties of one or more other objects
export function extend(dest) {
var i, j, len, src;
for (j = 1, len = arguments.length; j < len; j++) {
src = arguments[j];
for (i in src) {
dest[i] = src[i];
}
}
return dest;
}