(s)
| 40173 | const o = getProtocol(s) |
| 40174 | return bc(o) || 'file' === o || /^[a-zA-Z]$/.test(o) |
| 40175 | }), |
| 40176 | isHttpUrl = (s) => { |
| 40177 | const o = getProtocol(s) |
| 40178 | return 'http' === o || 'https' === o |
| 40179 | }, |
| 40180 | toFileSystemPath = (s, o) => { |
| 40181 | const i = [/%23/g, '#', /%24/g, '$', /%26/g, '&', /%2C/g, ',', /%40/g, '@'], |
no test coverage detected