- add '.gitea/workflows/build.yaml'
All checks were successful
Explore-Gitea-Actions
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 11s

- npm updates
- add map tool for drawing rectangles
This commit is contained in:
Kaimbacher 2023-04-12 09:26:45 +02:00
parent a744ae7e5b
commit 12b02a0d7d
6 changed files with 302 additions and 136 deletions

View file

@ -0,0 +1,12 @@
// 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;
}