(fromPath, toPath)
| 96 | } |
| 97 | |
| 98 | export function relativePath(fromPath, toPath) { |
| 99 | const value = path.relative(fromPath, toPath) || "."; |
| 100 | return toPosixPath(value); |
| 101 | } |
| 102 | |
| 103 | export function formatCommandPath(targetPath, options = {}) { |
| 104 | const absoluteTargetPath = path.resolve(targetPath); |
no test coverage detected