(filePath)
| 92 | } |
| 93 | |
| 94 | export function toPosixPath(filePath) { |
| 95 | return filePath.split(path.sep).join("/"); |
| 96 | } |
| 97 | |
| 98 | export function relativePath(fromPath, toPath) { |
| 99 | const value = path.relative(fromPath, toPath) || "."; |
no outgoing calls
no test coverage detected