(target, source)
| 28 | }; |
| 29 | |
| 30 | export const inheritAsyncDecorator = (target, source) => { |
| 31 | Object.defineProperty(target, '_dashprivate_isLazyComponentReady', { |
| 32 | get: () => isReady(source) |
| 33 | }); |
| 34 | } |
| 35 | |
| 36 | export const isReady = target => target && |
| 37 | target._dashprivate_isLazyComponentReady; |
nothing calls this directly
no test coverage detected
searching dependent graphs…