(cookie: unknown)
| 17 | } |
| 18 | |
| 19 | const isPostHogCookie = (cookie: unknown): cookie is PostHogCookie => { |
| 20 | return typeof cookie === 'object' && |
| 21 | cookie !== null && |
| 22 | 'distinct_id' in cookie; |
| 23 | } |
| 24 | |
| 25 | /** |
| 26 | * Attempts to retrieve the PostHog cookie from the given cookie store, returning |