(url: string)
| 316 | const InternalPrefixRE = new RegExp(`^(?:${internalPrefixes.join('|')})`) |
| 317 | const trailingSeparatorRE = /[?&]$/ |
| 318 | export const isImportRequest = (url: string): boolean => importQueryRE.test(url) |
| 319 | export const isInternalRequest = (url: string): boolean => |
| 320 | InternalPrefixRE.test(url) |
| 321 |
no outgoing calls
no test coverage detected