Ignore:
Timestamp:
12/12/24 17:06:06 (5 weeks ago)
Author:
stefan toskovski <stefantoska84@…>
Branches:
main
Parents:
d565449
Message:

Pred finalna verzija

File:
1 edited

Legend:

Unmodified
Added
Removed
  • imaps-frontend/node_modules/axios/lib/helpers/buildURL.js

    rd565449 r0c6b92a  
    2727 * @param {string} url The base of the url (e.g., http://www.google.com)
    2828 * @param {object} [params] The params to be appended
    29  * @param {?object} options
     29 * @param {?(object|Function)} options
    3030 *
    3131 * @returns {string} The formatted url
     
    3838 
    3939  const _encode = options && options.encode || encode;
     40
     41  if (utils.isFunction(options)) {
     42    options = {
     43      serialize: options
     44    };
     45  }
    4046
    4147  const serializeFn = options && options.serialize;
Note: See TracChangeset for help on using the changeset viewer.