Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/axios/lib/helpers/buildURL.js
rd565449 r0c6b92a 27 27 * @param {string} url The base of the url (e.g., http://www.google.com) 28 28 * @param {object} [params] The params to be appended 29 * @param {? object} options29 * @param {?(object|Function)} options 30 30 * 31 31 * @returns {string} The formatted url … … 38 38 39 39 const _encode = options && options.encode || encode; 40 41 if (utils.isFunction(options)) { 42 options = { 43 serialize: options 44 }; 45 } 40 46 41 47 const serializeFn = options && options.serialize;
Note:
See TracChangeset
for help on using the changeset viewer.