form-data-urlencoded
Version:
Сonverts data form to application/x-www-form-urlencoded
17 lines (13 loc) • 428 B
JavaScript
;
var index = function (data) {
var str = '';
JSON.parse(JSON.stringify(data), function (key, value) {
if(str === '' && key !== ''){
str = encodeURIComponent(key)+'='+encodeURIComponent(value);
}else if(key !== ''){
str = str+'&'+encodeURIComponent(key)+'='+encodeURIComponent(value);
}
});
return str;
}
module.exports = index;