Skip to content

Commit

Permalink
Fix range
Browse files Browse the repository at this point in the history
  • Loading branch information
eoftedal committed Aug 20, 2024
1 parent 6fdcbbb commit e4e8e17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/src/reporters/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Component } from '../types';

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

0 comments on commit e4e8e17

Please sign in to comment.