Skip to content

Commit bde8534

Browse files
committed
fix: comment test regex
1 parent 66cc576 commit bde8534

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/utility.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ function urlOperators(value) {
5858
const regex = new RegExp(operatorKeys, "g");
5959

6060
// Debugging regex match
61-
if (!regex.test(value)) {
62-
console.warn("Regex did not match any part of the input value.");
63-
}
61+
// if (!regex.test(value)) {
62+
// console.warn("Regex did not match any part of the input value.");
63+
// }
6464

6565
// Replace matched operators with their resolved values
6666
const updatedValue = value.replace(regex, function (match) {

0 commit comments

Comments
 (0)