Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/commons/interfaces/SameSiteContext.ts
1028 views
1
const sameSiteContext = ['none', 'strict', 'lax'] as const;
2
3
type SameSiteContext = typeof sameSiteContext[number];
4
5
export function isSameSiteContext(type: string): boolean {
6
return sameSiteContext.includes(type as any);
7
}
8
9
export default SameSiteContext;
10
11