Repository URL to install this package:
|
Version:
2.0.21 ▾
|
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.encodeBody = (reqBody) => Object.keys(reqBody)
.map(key => {
return encodeURIComponent(key) + '=' + encodeURIComponent(reqBody[key]);
})
.join('&');
//# sourceMappingURL=encodeBody.js.map