github.com/jfrog/frogbot@v1.1.1-0.20231221090046-821a26f50338/action/node_modules/@octokit/endpoint/dist-src/util/remove-undefined-properties.js (about)

     1  export function removeUndefinedProperties(obj) {
     2      for (const key in obj) {
     3          if (obj[key] === undefined) {
     4              delete obj[key];
     5          }
     6      }
     7      return obj;
     8  }