We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a19498 commit 92259b1Copy full SHA for 92259b1
docs/eval.html
@@ -13,7 +13,7 @@
13
const urlParams = new URLSearchParams(window.location.search);
14
const param = urlParams.get(name);
15
if (param !== null) {
16
- return decodeURIComponent(param.replace(/\+/g, "%20"));
+ return decodeURIComponent(param.replace(/\%2B/g, "+"));
17
} else {
18
return null;
19
}
0 commit comments