(text: string, delim: string)
| 594 | }) |
| 595 | |
| 596 | const splitPathString = (text: string, delim: string): Array<string> => { |
| 597 | const split = text.split(new RegExp(`\\s*${regexp.escape(delim)}\\s*`)) |
| 598 | return split |
| 599 | } |
| 600 | |
| 601 | const parsePrimitive = <A>( |
| 602 | text: string, |