MCPcopy Create free account
hub / github.com/deepnote/deepnote / isErrnoENOENT

Function isErrnoENOENT

packages/cli/src/utils/file-resolver.ts:31–33  ·  view source on GitHub ↗
(error: unknown)

Source from the content-addressed store, hash-verified

29}
30
31export function isErrnoENOENT(error: unknown): boolean {
32 return isErrnoException(error, 'ENOENT')
33}
34
35export function isErrnoENOTDIR(error: unknown): boolean {
36 return isErrnoException(error, 'ENOTDIR')

Callers 6

readDotEnvFunction · 0.90
updateDotEnvFunction · 0.90
lintFileFunction · 0.90
lintIntegrationsFileFunction · 0.90
readIntegrationsDocumentFunction · 0.90
parseIntegrationsFileFunction · 0.90

Calls 1

isErrnoExceptionFunction · 0.85

Tested by

no test coverage detected