We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64f83b9 commit ae9528bCopy full SHA for ae9528b
README.md
@@ -50,6 +50,8 @@ Remove all query parameters by passing in an empty string.
50
```
51
import querymodifier;
52
set req.url = querymodifier.modifyparams(url=req.url, params="", exclude_params=true);
53
+# Or use the conveniecen function, `excludeallparams`.
54
+# set req.url = querymodifier.excludeallparams(url=req.url);
55
56
# Original URL: example.com/?search=name&ts=123456789&v=123456789&id=987654321
57
# Modified URL: example.com/
0 commit comments