Skip to content

Commit e4e8e17

Browse files
committed
Fix range
1 parent 6fdcbbb commit e4e8e17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

node/src/reporters/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Component } from '../types';
22

33
function encodePURLchars(str: string): string {
44
return str.replace(
5-
/[^A-Za-z0-9.+/=-%]/g,
5+
/[^A-Za-z0-9.+/=%-]/g,
66
(match) => '%' + ('0' + match.charCodeAt(0).toString(16).toUpperCase()).slice(-2),
77
);
88
}

0 commit comments

Comments
 (0)