package.initializers.axiosInitializer.paramsSerializer.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neeto-commons-frontend Show documentation
Show all versions of neeto-commons-frontend Show documentation
A package encapsulating common code across neeto projects including initializers, utility functions, common components and hooks and so on.
/* eslint-disable @bigbinary/neeto/use-snake-case-for-api-connector-filename */
import axios from "axios";
import qs from "qs";
var setParamsSerializer = function setParamsSerializer() {
axios.defaults.paramsSerializer = function (params) {
return qs.stringify(params, {
arrayFormat: "brackets",
skipNulls: true
});
};
};
export default setParamsSerializer;
//# sourceMappingURL=paramsSerializer.js.map