We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fdcbbb commit e4e8e17Copy full SHA for e4e8e17
node/src/reporters/utils.ts
@@ -2,7 +2,7 @@ import { Component } from '../types';
2
3
function encodePURLchars(str: string): string {
4
return str.replace(
5
- /[^A-Za-z0-9.+/=-%]/g,
+ /[^A-Za-z0-9.+/=%-]/g,
6
(match) => '%' + ('0' + match.charCodeAt(0).toString(16).toUpperCase()).slice(-2),
7
);
8
}
0 commit comments