(subPath = '')
| 147 | } |
| 148 | |
| 149 | export function getProjectAppAbsolutePath(subPath = ''): string { |
| 150 | const rel = getProjectAppRelativePath(subPath); |
| 151 | return path.resolve(getProjectRootPath(), rel); |
| 152 | } |
| 153 | |
| 154 | export function getProjectAppVirtualPath(subPath = ''): string { |
| 155 | const rel = getProjectAppRelativePath(subPath).replace(/^\/+/, ''); |
nothing calls this directly
no test coverage detected