We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa667d6 commit f10239fCopy full SHA for f10239f
lib/internal/util/debuglog.js
@@ -173,7 +173,7 @@ function formatTime(ms) {
173
}
174
175
function safeTraceLabel(label) {
176
- return label.replace(/\\/g, '\\\\').replaceAll('"', '\\"');
+ return label.replaceAll('\\', '\\\\').replaceAll('"', '\\"');
177
178
179
/**
lib/url.js
@@ -705,7 +705,7 @@ Url.prototype.format = function format() {
705
706
707
708
- search = search.replace(/#/g, '%23');
+ search = search.replaceAll('#', '%23');
709
710
if (hash && hash.charCodeAt(0) !== CHAR_HASH)
711
hash = '#' + hash;
0 commit comments