(text: string)
| 923 | } |
| 924 | |
| 925 | protected quote(text: string): string { |
| 926 | // only escape if text contains non-word or non-path characters such as whitespace or quotes |
| 927 | return /^-|[^\w\d\/_\-\.]/g.test(text) ? ('"' + escape(text) + '"') : text; |
| 928 | } |
| 929 | |
| 930 | prettyPrint: boolean = true; |
| 931 | printCalls: boolean; |
no test coverage detected