(text: string)
| 211 | * Convert rison-encoded string to object |
| 212 | */ |
| 213 | export function unrisonify(text: string): any { |
| 214 | return rison.decode_object(decodeURIComponent(text.replace(/\+/g, '%20'))); |
| 215 | } |
| 216 | |
| 217 | /** |
| 218 | * Serialise state object to URL hash string |
no outgoing calls
no test coverage detected