]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/root-helpers/utils.ts
Translated using Weblate (Spanish)
[github/Chocobozzz/PeerTube.git] / client / src / root-helpers / utils.ts
CommitLineData
4504f09f
RK
1function objectToUrlEncoded (obj: any) {
2 const str: string[] = []
3 for (const key of Object.keys(obj)) {
4 str.push(encodeURIComponent(key) + '=' + encodeURIComponent(obj[key]))
5 }
6
7 return str.join('&')
8}
9
10export {
11 objectToUrlEncoded
12}