-
Notifications
You must be signed in to change notification settings - Fork 12k
/
Copy pathfs.ts
39 lines (34 loc) · 889 Bytes
/
fs.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { statSync } from 'fs';
/** @deprecated Since v11.0, unused by the Angular tooling */
export function isFile(filePath: string): boolean {
let stat;
try {
stat = statSync(filePath);
} catch (e) {
if (e && (e.code === 'ENOENT' || e.code === 'ENOTDIR')) {
return false;
}
throw e;
}
return stat.isFile() || stat.isFIFO();
}
/** @deprecated Since v11.0, unused by the Angular tooling */
export function isDirectory(filePath: string): boolean {
let stat;
try {
stat = statSync(filePath);
} catch (e) {
if (e && (e.code === 'ENOENT' || e.code === 'ENOTDIR')) {
return false;
}
throw e;
}
return stat.isDirectory();
}