(infix: string, ev: Event, type = ev.type)
| 48 | const isPromise = (promise: Promise<any>) => promise && typeof promise.then === 'function'; |
| 49 | |
| 50 | const broadcast = (infix: string, ev: Event, type = ev.type) => { |
| 51 | querySelectorAll('[on' + infix + '\\:' + type + ']').forEach((el) => { |
| 52 | dispatch(el, infix, ev, type); |
| 53 | }); |
| 54 | }; |
| 55 | |
| 56 | const resolveContainer = (containerEl: QContainerElement) => { |
| 57 | if (containerEl._qwikjson_ === undefined) { |
no test coverage detected
searching dependent graphs…