mirror of
https://github.com/axios/axios.git
synced 2026-04-12 14:41:55 +08:00
Added `toURLEncodedForm` helper; Added automatic payload serialization to `application/x-www-form-urlencoded` to have parity with `multipart/form-data`; Added test of handling `application/x-www-form-urlencoded` body by express.js; Updated README.md; Added missed param in JSDoc; Fixed hrefs in README.md; Co-authored-by: Jay <jasonsaayman@gmail.com>
6 lines
80 B
JavaScript
6 lines
80 B
JavaScript
'use strict';
|
|
|
|
var url = require('url');
|
|
|
|
module.exports = url.URLSearchParams;
|