(from, to)
| 12 | const _supports = !!(isNode || self.Worker); // node always supports parallel |
| 13 | |
| 14 | function extend(from, to) { |
| 15 | if (!to) to = {}; |
| 16 | for (const i in from) { |
| 17 | if (to[i] === undefined) to[i] = from[i]; |
| 18 | } |
| 19 | return to; |
| 20 | } |
| 21 | |
| 22 | function Operation() { |
| 23 | this._callbacks = []; |
no outgoing calls
no test coverage detected