From 8f2d17140468512372ccd3aeebb0d505c607b977 Mon Sep 17 00:00:00 2001 From: snek Date: Tue, 21 May 2024 15:50:59 -0700 Subject: feat(node): buffer isUtf8/isAscii (#23928) Fixes: https://github.com/denoland/deno/issues/23657 Implements `isUtf8` and `isAscii` as ops. --- ext/node/polyfills/internal/errors.ts | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'ext/node/polyfills/internal/errors.ts') diff --git a/ext/node/polyfills/internal/errors.ts b/ext/node/polyfills/internal/errors.ts index c3aeff8b2..a16656087 100644 --- a/ext/node/polyfills/internal/errors.ts +++ b/ext/node/polyfills/internal/errors.ts @@ -2564,6 +2564,12 @@ export class ERR_HTTP_SOCKET_ASSIGNED extends NodeError { } } +export class ERR_INVALID_STATE extends NodeError { + constructor(message: string) { + super("ERR_INVALID_STATE", `Invalid state: ${message}`); + } +} + interface UvExceptionContext { syscall: string; path?: string; @@ -2824,6 +2830,7 @@ export default { ERR_INVALID_RETURN_PROPERTY, ERR_INVALID_RETURN_PROPERTY_VALUE, ERR_INVALID_RETURN_VALUE, + ERR_INVALID_STATE, ERR_INVALID_SYNC_FORK_INPUT, ERR_INVALID_THIS, ERR_INVALID_TUPLE, -- cgit v1.2.3