You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* (No such file or directory): Commonly raised by `fs` operations to indicate that a component of the specified pathname does not exist — no entity (file or directory) could be found by the given path.
19
+
*/
20
+
exportfunctionisENOENT(
21
+
arg: unknown
22
+
): arg is ErrnoException&{code: 'ENOENT'}{
23
+
returnis(arg)&&arg.code==='ENOENT';
24
+
}
25
+
26
+
/**
27
+
* (Not a directory): A component of the given pathname existed, but was not a directory as expected. Commonly raised by `fs.readdir`.
0 commit comments