(base: string, scope: string, ...rest: string[])
| 18 | // email-change migration (migrateUserStorage, renames by `.{email}` suffix) |
| 19 | // keeps working. |
| 20 | const withScope = (base: string, scope: string, ...rest: string[]): string => |
| 21 | [base, ...(scope ? [scope] : []), ...rest].join("."); |
| 22 | |
| 23 | // --- Global (no user scope) --- |
| 24 | export const STORAGE_KEY_BACK_PATH = "bb.back-path"; |
no outgoing calls
no test coverage detected