We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a96da9 commit b6a3353Copy full SHA for b6a3353
packages/angular_devkit/core/node/fs.ts
@@ -7,6 +7,7 @@
7
*/
8
import { statSync } from 'fs';
9
10
+/** @deprecated Since v11.0, unused by the Angular tooling */
11
export function isFile(filePath: string): boolean {
12
let stat;
13
try {
@@ -21,7 +22,7 @@ export function isFile(filePath: string): boolean {
21
22
return stat.isFile() || stat.isFIFO();
23
}
24
-
25
26
export function isDirectory(filePath: string): boolean {
27
28
0 commit comments