(value: string)
| 43 | } |
| 44 | |
| 45 | export function decodeBooleanArray(value: string) { |
| 46 | return parseArray(value, decodeBoolean); |
| 47 | } |
| 48 | |
| 49 | export function decodeBox(value: string): Box { |
| 50 | const points = value.match(/\(.*?\)/g) || []; |
no test coverage detected