mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-04 09:39:23 +00:00
7 lines
192 B
JavaScript
7 lines
192 B
JavaScript
|
|
// Equivalent of jQuery's param
|
||
|
|
|
||
|
|
export default function (params) {
|
||
|
|
Object.keys(params).map((k) => {
|
||
|
|
return `${encodeURIComponent(k)}=${encodeURIComponent(params[k])}`;
|
||
|
|
}).join('&');
|
||
|
|
}
|