Skip to content

Commit eac4619

Browse files
authored
fix: allow passing a callback as paramsSerializer to buildURL (#6680)
* fix: allow passing a callback as paramsSerializer to buildURL * fix: add missing semicolon
1 parent df956d1 commit eac4619

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

lib/helpers/buildURL.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function encode(val) {
2626
*
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
3232
*/
@@ -38,6 +38,12 @@ export default function buildURL(url, params, options) {
3838

3939
const _encode = options && options.encode || encode;
4040

41+
if (utils.isFunction(options)) {
42+
options = {
43+
serialize: options
44+
};
45+
}
46+
4147
const serializeFn = options && options.serialize;
4248

4349
let serializedParams;

test/specs/helpers/buildURL.spec.js

+7
Original file line numberDiff line numberDiff line change
@@ -98,5 +98,12 @@ describe('helpers::buildURL', function () {
9898
};
9999

100100
expect(buildURL('/foo', params, options)).toEqual('/foo?rendered');
101+
102+
const customSerializer = (thisParams) => {
103+
expect(thisParams).toEqual(params);
104+
return "rendered"
105+
};
106+
107+
expect(buildURL('/foo', params, customSerializer)).toEqual('/foo?rendered');
101108
});
102109
});

0 commit comments

Comments
 (0)