We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1469f13 commit b22ab37Copy full SHA for b22ab37
packages/angular/build/src/builders/unit-test/options.ts
@@ -54,18 +54,3 @@ export async function normalizeOptions(
54
watch: false,
55
};
56
}
57
-
58
-/**
59
- * Normalize a directory path string.
60
- * Currently only removes a trailing slash if present.
61
- * @param path A path string.
62
- * @returns A normalized path string.
63
- */
64
-function normalizeDirectoryPath(path: string): string {
65
- const last = path[path.length - 1];
66
- if (last === '/' || last === '\\') {
67
- return path.slice(0, -1);
68
- }
69
70
- return path;
71
-}
0 commit comments