Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixup! util: add fast path to stripVTControlCharacters
  • Loading branch information
privatenumber committed Feb 15, 2026
commit 003511d1a607ffe1227db3e4ac43d06d041313aa
2 changes: 1 addition & 1 deletion benchmark/util/strip-vt-control-characters.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function main({ input, n }) {
str = 'This is a plain text string without any ANSI codes';
break;
case 'noAnsi-long':
str = 'Long plain text without ANSI. '.repeat(100);
str = 'Long plain text without ANSI. '.repeat(333);
break;
case 'ansi-short':
str = '\u001B[31mHello\u001B[39m';
Expand Down
Loading