UNPKG

bananas-commerce-admin

Version:

What's this, an admin for apes?

7 lines (6 loc) 279 B
export function getCookie(name: string): string | undefined { const prefix = `${name}=`; const cookies = document.cookie.split(/\s*;\s*/); const match = cookies.find((cookie) => cookie.startsWith(prefix)); return match == null ? undefined : match.slice(prefix.length); }