( obj: any )
| 201 | * while the context is still being initialized because context setState is pending. |
| 202 | */ |
| 203 | export const isContextWatchdogReadyToUse = ( obj: any ): obj is ExtractContextWatchdogValueByStatus<'initialized'> => ( |
| 204 | isContextWatchdogValueWithStatus( 'initialized' )( obj ) && |
| 205 | obj.watchdog.state === 'ready' |
| 206 | ); |
| 207 | |
| 208 | /** |
| 209 | * Represents the value of the ContextWatchdog in the CKEditor context. |
no test coverage detected
searching dependent graphs…