We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc95df8 commit 525b66bCopy full SHA for 525b66b
utilities/utilities.js
@@ -0,0 +1,5 @@
1
+exports.stringify = obj =>
2
+ Object.keys(obj)
3
+ .map(k => `${k}=${encodeURIComponent(obj[k])}`)
4
+ .join("&");
5
+
0 commit comments