(target, ...objects)
| 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(); |
no outgoing calls
no test coverage detected