(name: string)
| 385 | }; |
| 386 | |
| 387 | const execCallback = (name: string) => { |
| 388 | const callback = options[name]; |
| 389 | |
| 390 | if (!callback) { |
| 391 | return; |
| 392 | } |
| 393 | |
| 394 | return callback.apply(self, []); |
| 395 | }; |
| 396 | |
| 397 | const findTargets = (options: RawEditorOptions): HTMLElement[] => { |
| 398 | if (Env.browser.isIE() || Env.browser.isEdge()) { |
no outgoing calls
no test coverage detected
searching dependent graphs…