(input: string)
| 39 | } |
| 40 | |
| 41 | function decode(input: string) { |
| 42 | try { |
| 43 | return decodeURIComponent(input) |
| 44 | } catch { |
| 45 | return input |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | export const layer = Layer.effect( |
| 50 | LocationMiddleware, |
no outgoing calls
no test coverage detected