Spaces:
Sleeping
Sleeping
File size: 258 Bytes
420b22a |
1 2 3 4 5 6 7 8 9 10 |
function jsonToPayloadString(json) {
// return a string with the following format: "key1=value1&key2=value2..."
let result = ''
for (let key in json) {
result += `${key}=${json[key]}&`
}
return result.slice(0, -1)
}
export default jsonToPayloadString; |