File size: 231 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 |
const REACT_POSTPONE_TYPE: symbol = Symbol.for('react.postpone')
export function isPostpone(error: any): boolean {
return (
typeof error === 'object' &&
error !== null &&
error.$$typeof === REACT_POSTPONE_TYPE
)
}
|