(path: string)
| 194 | }; |
| 195 | |
| 196 | const isAbsolute = function isAbsolute(path: string) { |
| 197 | assertPath(path); |
| 198 | return path.length > 0 && path.charCodeAt(0) === 47 /*/*/; |
| 199 | }; |
| 200 | |
| 201 | const join = function join(...paths: string[]) { |
| 202 | if (paths.length === 0) { |
no test coverage detected
searching dependent graphs…