mirror of
https://github.com/axios/axios.git
synced 2026-04-13 02:51:56 +08:00
* Refactored BuildURL helper to use URLSearchParams serializer; * Updated typings; Added TS test;
6 lines
191 B
JavaScript
6 lines
191 B
JavaScript
'use strict';
|
|
|
|
var AxiosURLSearchParams = require('../../../helpers/AxiosURLSearchParams');
|
|
|
|
module.exports = typeof URLSearchParams !== 'undefined' ? URLSearchParams : AxiosURLSearchParams;
|