Expose POSIX error name as PosixError.code

This matches the behaviour of Node.JS's errors, and some libraries
expect it.
This commit is contained in:
Sam Atkins
2024-05-16 10:46:52 +01:00
parent 017077f8cb
commit acf7eabef9
@@ -89,6 +89,7 @@ class PosixError extends Error {
super(message ?? ErrorMetadata.get(posixCode).description);
this.posixCode = posixCode;
this.code = posixCode.description;
}
static fromNodeJSError(e) {