(store: Store)
| 21 | showInternals: boolean; |
| 22 | } |
| 23 | export function encodeStore(store: Store): string { |
| 24 | return compressToEncodedURIComponent(JSON.stringify(store)); |
| 25 | } |
| 26 | export function decodeStore(hash: string): any { |
| 27 | return JSON.parse(decompressFromEncodedURIComponent(hash)); |
| 28 | } |
no outgoing calls
no test coverage detected