( topic: StorageTopic, key: string, identifier = 'global', )
| 10 | export const APP_KEY_PREFIX = 'dailydev'; |
| 11 | |
| 12 | export const generateStorageKey = ( |
| 13 | topic: StorageTopic, |
| 14 | key: string, |
| 15 | identifier = 'global', |
| 16 | ): string => `${APP_KEY_PREFIX}:${topic}:${key}:${identifier}`; |
no outgoing calls
no test coverage detected