(input: string, defaultValues: (string | null)[])
| 17 | } |
| 18 | |
| 19 | export function splitAtPeriod(input: string, defaultValues: (string | null)[]): (string | null)[] { |
| 20 | return _splitAt(input, '.', defaultValues); |
| 21 | } |
| 22 | |
| 23 | function _splitAt( |
| 24 | input: string, |
no test coverage detected
searching dependent graphs…