First commit
This commit is contained in:
commit
87d22a4516
235 changed files with 51802 additions and 0 deletions
14
node_modules/proj4/lib/extend.js
generated
vendored
Normal file
14
node_modules/proj4/lib/extend.js
generated
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
export default function(destination, source) {
|
||||
destination = destination || {};
|
||||
var value, property;
|
||||
if (!source) {
|
||||
return destination;
|
||||
}
|
||||
for (property in source) {
|
||||
value = source[property];
|
||||
if (value !== undefined) {
|
||||
destination[property] = value;
|
||||
}
|
||||
}
|
||||
return destination;
|
||||
}
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue