mirror of
https://github.com/tenrok/axios.git
synced 2026-05-21 13:24:11 +03:00
c05ad48952
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>
9 lines
128 B
JavaScript
9 lines
128 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
isNode: true,
|
|
classes: {
|
|
URLSearchParams: require('./classes/URLSearchParams')
|
|
}
|
|
};
|