Commit f785d1f1 by Billy Larru

agregando cleansParams en general.js

parent e728612d
......@@ -351,6 +351,19 @@ function formatResponse(resultAxios) {
return {
status: resultAxios.data.status || true,
message: resultAxios.data.message || `Operación exitosa`,
data: resultAxios.data.data || result.data
data: resultAxios.data.data || resultAxios.data
};
}
const cleanQueryParams = (params = {}) => {
for (var key in params) {
if (params.hasOwnProperty(key)) {
debugger;
if (!params[key]) {
delete params[key];
}
}
}
return params;
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment