(key: string)
| 72 | * Checks whether a given key is used by the framework for transferring hydration data. |
| 73 | */ |
| 74 | export function isInternalHydrationTransferStateKey(key: string): boolean { |
| 75 | return key === TRANSFER_STATE_TOKEN_ID || key === TRANSFER_STATE_DEFER_BLOCKS_INFO; |
| 76 | } |
| 77 | |
| 78 | /** |
| 79 | * The name of the attribute that would be added to host component |
no outgoing calls
no test coverage detected
searching dependent graphs…