(filepath)
| 199 | let internalUrl; |
| 200 | |
| 201 | function pathToFileUrlHref(filepath) { |
| 202 | internalUrl ??= require('internal/url'); |
| 203 | return internalUrl.pathToFileURL(filepath).href; |
| 204 | } |
| 205 | |
| 206 | function isURL(value) { |
| 207 | internalUrl ??= require('internal/url'); |
no test coverage detected
searching dependent graphs…