(value: string)
| 270 | } |
| 271 | |
| 272 | export function decodeLineArray(value: string) { |
| 273 | return parseArray(value, decodeLine); |
| 274 | } |
| 275 | |
| 276 | export function decodeLineSegment(value: string): LineSegment { |
| 277 | const points = value.substring(1, value.length - 1).match(/\(.*?\)/g) || []; |
no test coverage detected