(str = '')
| 207 | } |
| 208 | |
| 209 | export function splitArguments(str = ''): string[] { |
| 210 | return new ArgumentParser(str).exec(); |
| 211 | } |
| 212 | |
| 213 | export function capitaliseFirst(str: string): string { |
| 214 | if (str.length === 0) return str; |
no test coverage detected