(projectPath: string)
| 189 | } |
| 190 | |
| 191 | export function projectPathToPiDirSlug(projectPath: string): string { |
| 192 | return `--${projectPath.replace(/^\/+|\/+$/g, "").replaceAll("/", "-")}--`; |
| 193 | } |
| 194 | |
| 195 | export function formatPiFilenameTimestamp(date: Date): string { |
| 196 | return date.toISOString().replaceAll(":", "-").replace(".", "-"); |
no outgoing calls
no test coverage detected