Skip to content

Commit

Permalink
Reverted Change
Browse files Browse the repository at this point in the history
Signed-off-by: Adithya Krishna <[email protected]>
  • Loading branch information
Adithya Krishna committed Jul 10, 2023
1 parent 2cefd54 commit b533005
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utilities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ export function specStringToObject(str) {

}

str = str.replace(/%7E/, '~'); //copy/pasting urls sometimes does this
str = str.replace(/%7E/g, '~'); //copy/pasting urls sometimes does this
//convert things that look like numbers into numbers
var massage = function (val) {
if (isNumeric(val)) {
Expand Down

0 comments on commit b533005

Please sign in to comment.