5 lines
No EOL
189 B
TypeScript
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)
|
|
);
|
|
} |