(value: string)
| 216 | } |
| 217 | |
| 218 | export function decodeInt(value: string): number { |
| 219 | return parseInt(value, 10); |
| 220 | } |
| 221 | |
| 222 | export function decodeIntArray(value: string) { |
| 223 | return parseArray(value, decodeInt); |
no outgoing calls
no test coverage detected