(input: string)
| 143 | } |
| 144 | |
| 145 | export function getFileName(input: string): string { |
| 146 | const m = /([^\\/]+)$/.exec(input) |
| 147 | return m ? m[1] : '' |
| 148 | } |
| 149 | |
| 150 | export function camelcaseOptionName(name: string): string { |
| 151 | // Camelcase the option name |
no outgoing calls
no test coverage detected
searching dependent graphs…