MCPcopy
hub / github.com/dropzone/dropzone / extend

Method extend

src/dropzone.js:53–61  ·  view source on GitHub ↗
(target, ...objects)

Source from the content-addressed store, hash-verified

51
52 // global utility
53 static extend(target, ...objects) {
54 for (let object of objects) {
55 for (let key in object) {
56 let val = object[key];
57 target[key] = val;
58 }
59 }
60 return target;
61 }
62
63 constructor(el, options) {
64 super();

Callers 2

constructorMethod · 0.80
_uploadDataMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected