(input: string, defaultValues: (string | null)[])
| 13 | } |
| 14 | |
| 15 | export function splitAtColon(input: string, defaultValues: (string | null)[]): (string | null)[] { |
| 16 | return _splitAt(input, ':', defaultValues); |
| 17 | } |
| 18 | |
| 19 | export function splitAtPeriod(input: string, defaultValues: (string | null)[]): (string | null)[] { |
| 20 | return _splitAt(input, '.', defaultValues); |
no test coverage detected
searching dependent graphs…