(key: string)
| 18 | } |
| 19 | |
| 20 | const processKey = (key: string): string => { |
| 21 | return shouldAddPrefix(key) ? `${prefix}${key}` : key |
| 22 | } |
| 23 | |
| 24 | const methodsNeedKeyPrefix = new Set(['get', 'delete', 'touch', 'add', 'replace']) |
| 25 |
no test coverage detected