summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/internal/buffer.mjs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2024-09-12 00:02:50 +0100
committerGitHub <noreply@github.com>2024-09-12 01:02:50 +0200
commit05bd547238006f089f05ef046470e00c94317da6 (patch)
tree733a538213204e212cc52781b8669b3f8b65531c /ext/node/polyfills/internal/buffer.mjs
parent5e0b2aa47314d1b90e33407866b977f9470fdbbb (diff)
feat(ext/node): export more symbols from streams and timers/promises (#25582)
Diffstat (limited to 'ext/node/polyfills/internal/buffer.mjs')
-rw-r--r--ext/node/polyfills/internal/buffer.mjs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/node/polyfills/internal/buffer.mjs b/ext/node/polyfills/internal/buffer.mjs
index 4964b1956..48b102a77 100644
--- a/ext/node/polyfills/internal/buffer.mjs
+++ b/ext/node/polyfills/internal/buffer.mjs
@@ -65,7 +65,7 @@ const customInspectSymbol =
? Symbol["for"]("nodejs.util.inspect.custom")
: null;
-const INSPECT_MAX_BYTES = 50;
+export const INSPECT_MAX_BYTES = 50;
export const constants = {
MAX_LENGTH: kMaxLength,