feature: initial commit

This commit is contained in:
Danilo Cesa
2025-05-29 09:50:45 +08:00
commit 0f0d9e3bef
815 changed files with 120458 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
export class CwdError extends Error {
path;
code;
syscall = 'chdir';
constructor(path, code) {
super(`${code}: Cannot cd into '${path}'`);
this.path = path;
this.code = code;
}
get name() {
return 'CwdError';
}
}
//# sourceMappingURL=cwd-error.js.map