Prepare 1.8.4 release
Some checks failed
Test / check_pr (push) Has been cancelled

This commit is contained in:
Nick Cipollo
2021-04-15 13:30:45 -04:00
parent ec90733eaa
commit 7c50463644
442 changed files with 156408 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
export function removeUndefinedProperties(obj) {
for (const key in obj) {
if (obj[key] === undefined) {
delete obj[key];
}
}
return obj;
}