(token: string)
| 24 | ); |
| 25 | |
| 26 | function unescape(token: string): string { |
| 27 | return token.replace(/\\(.)/g, '$1'); // "\ " -> " ", "\(" -> "(", etc. |
| 28 | } |
| 29 | |
| 30 | function resolvePath(token: string, cwd: string): string { |
| 31 | let p = unescape(token).trim(); |
no outgoing calls
no test coverage detected