(path: string)
| 282 | } |
| 283 | |
| 284 | export function isPlanAliasPath(path: string): boolean { |
| 285 | return isWorkspacePlanAliasPath(path) || isWorkflowAliasPath(path) |
| 286 | } |
| 287 | |
| 288 | export function isWorkflowAliasBackingPath(path: string): boolean { |
| 289 | const trimmedPath = path.trim().replace(/^\/+|\/+$/g, '') |
no test coverage detected