(input, pointer)
| 4323 | }; |
| 4324 | var fileOtherwiseCodePoints = /* @__PURE__ */ new Set([p4("/"), p4("\\"), p4("?"), p4("#")]); |
| 4325 | function startsWithWindowsDriveLetter(input, pointer) { |
| 4326 | const length = input.length - pointer; |
| 4327 | return length >= 2 && isWindowsDriveLetterCodePoints(input[pointer], input[pointer + 1]) && (length === 2 || fileOtherwiseCodePoints.has(input[pointer + 2])); |
| 4328 | } |
| 4329 | URLStateMachine.prototype["parse file"] = function parseFile(c4) { |
| 4330 | this.url.scheme = "file"; |
| 4331 | this.url.host = ""; |
no test coverage detected
searching dependent graphs…