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 26c14e8 commit 83a4804Copy full SHA for 83a4804
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