(value: string | undefined)
| 45 | * @internal |
| 46 | */ |
| 47 | export function split(value: string | undefined) { |
| 48 | return typeof value === 'string' |
| 49 | ? value.split(/ *, */g).filter((v) => v !== '') |
| 50 | : undefined; |
| 51 | } |
| 52 | |
| 53 | /** |
| 54 | * Parse a string as JSON. |
no outgoing calls
no test coverage detected
searching dependent graphs…