UNPKG

projen

Version:

CDK for software projects

9 lines (8 loc) 293 B
/** * Helper function to format a path as dot notation regardless of how it * was handed in. * * @param path - can be formatted as "path", "./path" (but not "/path", as it is absolute) * @returns "./path" */ export declare function ensureRelativePathStartsWithDot(path: string): string;