()
| 20161 | return str.endsWith(end); |
| 20162 | } |
| 20163 | _isCmdFile() { |
| 20164 | const upperToolPath = this.toolPath.toUpperCase(); |
| 20165 | return this._endsWith(upperToolPath, ".CMD") || this._endsWith(upperToolPath, ".BAT"); |
| 20166 | } |
| 20167 | _windowsQuoteCmdArg(arg) { |
| 20168 | if (!this._isCmdFile()) { |
| 20169 | return this._uvQuoteCmdArg(arg); |
no test coverage detected