sintonia_webapp/resources/js/helpers/AxiosHelper.ts

5 lines
No EOL
189 B
TypeScript

export function cleanOptions(options: Object): Object {
return Object.fromEntries(
Object.entries(options).filter(([_, value]) => value !== undefined && value !== null)
);
}