actions/node_modules/@octokit/endpoint/dist-src/util/remove-undefined-properties.js
2026-05-11 11:18:49 +02:00

11 lines
189 B
JavaScript

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