(type: StorageKeyType, ...ids: Ids)
| 37 | onIgnoredError?: (error: any) => void, |
| 38 | ): DurableObjectStoragePersister => { |
| 39 | const constructKey = (type: StorageKeyType, ...ids: Ids) => |
| 40 | storagePrefix + type + slice(jsonStringWithUndefined(ids), 1, -1); |
| 41 | |
| 42 | const deconstructKey = ( |
| 43 | key: string, |
no test coverage detected
searching dependent graphs…