(parsed: UrlWithStringQuery)
| 134 | }); |
| 135 | |
| 136 | function isFileUrlOrNodeStyleSpecifier(parsed: UrlWithStringQuery) { |
| 137 | // We only understand file:// URLs, but in node, the specifier can be a node-style `./foo` or `foo` |
| 138 | const { protocol } = parsed; |
| 139 | return protocol === null || protocol === 'file:'; |
| 140 | } |
| 141 | |
| 142 | /** |
| 143 | * Named "probably" as a reminder that this is a guess. |
no outgoing calls
no test coverage detected
searching dependent graphs…