1
0
mirror of https://github.com/Minionguyjpro/Inno-Setup-Action synced 2026-02-18 17:41:18 +01:00
Files
inno-setup/node_modules/@octokit/endpoint/dist-src/util/remove-undefined-properties.js
2023-12-12 17:39:33 +01:00

9 lines
179 B
JavaScript

export function removeUndefinedProperties(obj) {
for (const key in obj) {
if (obj[key] === undefined) {
delete obj[key];
}
}
return obj;
}