mirror of
https://github.com/wishthis/wishthis.git
synced 2026-01-26 16:09:08 -05:00
9 lines
179 B
JavaScript
9 lines
179 B
JavaScript
export function removeUndefinedProperties(obj) {
|
|
for (const key in obj) {
|
|
if (obj[key] === undefined) {
|
|
delete obj[key];
|
|
}
|
|
}
|
|
return obj;
|
|
}
|