(draftKey: string)
| 22 | let persistenceListenersBound = false |
| 23 | |
| 24 | function storageKeyForDraftKey(draftKey: string): string { |
| 25 | return `${STORAGE_PREFIX}:${draftKey}` |
| 26 | } |
| 27 | |
| 28 | function storageKeyForDraftKeyV2(draftKey: string): string { |
| 29 | return `${STORAGE_PREFIX_V2}:${draftKey}` |
no outgoing calls
no test coverage detected