Use same lock values as mobile clients
[ProtonMail-WebClient.git] / packages / shared / lib / helpers / scope.ts
blobbc65718e5ccae3f0caeb8f3ff888ad061eacb2e8
1 export const hasScope = (scope: string, mask: number | string) => {
2     const scopeInt = BigInt(scope);
3     const maskInt = BigInt(mask);
5     return (scopeInt & maskInt) === maskInt;
6 };