| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent fa667d6 commit f10239f
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -173,7 +173,7 @@ function formatTime(ms) { | |||
| 173 | 173 | } | |
| 174 | 174 | ||
| 175 | 175 | function safeTraceLabel(label) { | |
| 176 | - return label.replace(/\\/g, '\\\\').replaceAll('"', '\\"'); | ||
| 176 | + return label.replaceAll('\\', '\\\\').replaceAll('"', '\\"'); | ||
| 177 | 177 | } | |
| 178 | 178 | ||
| 179 | 179 | /** | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -705,7 +705,7 @@ Url.prototype.format = function format() { | |||
| 705 | 705 | } | |
| 706 | 706 | } | |
| 707 | 707 | ||
| 708 | - search = search.replace(/#/g, '%23'); | ||
| 708 | + search = search.replaceAll('#', '%23'); | ||
| 709 | 709 | ||
| 710 | 710 | if (hash && hash.charCodeAt(0) !== CHAR_HASH) | |
| 711 | 711 | hash = '#' + hash; | |
| Back | FazBrowse Home | New Git URL |
0 commit comments