File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -176,11 +176,11 @@ will now correctly change as the underlying `ArrayBuffer` size is changed.
176176``` js
177177const ab = new ArrayBuffer (10 , { maxByteLength: 20 });
178178const buffer = Buffer .from (ab);
179- console .log (buffer .byteLength ); 10
179+ console .log (buffer .byteLength ); // 10
180180ab .resize (15 );
181- console .log (buffer .byteLength ); 15
181+ console .log (buffer .byteLength ); // 15
182182ab .resize (5 );
183- console .log (buffer .byteLength ); 5
183+ console .log (buffer .byteLength ); // 5
184184```
185185
186186Contributed by James M Snell in [ #55377 ] ( https://github.com/nodejs/node/pull/55377 ) .
Original file line number Diff line number Diff line change @@ -45,7 +45,6 @@ export default [
4545 'benchmark/tmp/**' ,
4646 'doc/changelogs/CHANGELOG_V1*.md' ,
4747 '!doc/changelogs/CHANGELOG_V18.md' ,
48- 'doc/changelogs/CHANGELOG_V23.md' ,
4948 'lib/punycode.js' ,
5049 'test/.tmp.*/**' ,
5150 'test/addons/??_*' ,
You can’t perform that action at this time.
0 commit comments