File size: 602 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | export const ANONYMOUS_TOKEN_COOKIE_KEY = '_ALGOLIA';
function getCookie(name: string): string | undefined {
const prefix = `${name}=`;
const cookies = document.cookie.split(';');
for (let i = 0; i < cookies.length; i++) {
let cookie = cookies[i];
while (cookie.charAt(0) === ' ') {
cookie = cookie.substring(1);
}
if (cookie.indexOf(prefix) === 0) {
return cookie.substring(prefix.length, cookie.length);
}
}
return undefined;
}
export default function getInsightsAnonymousUserToken(): string | undefined {
return getCookie(ANONYMOUS_TOKEN_COOKIE_KEY);
}
|