Testing actions

This commit is contained in:
Janos 2021-07-28 08:24:31 +02:00
commit 8a260b16ec
No known key found for this signature in database
GPG key ID: 465EF45E51CBA2BA
340 changed files with 72676 additions and 0 deletions

8
node_modules/@octokit/endpoint/dist-src/util/omit.js generated vendored Normal file
View file

@ -0,0 +1,8 @@
export function omit(object, keysToOmit) {
return Object.keys(object)
.filter((option) => !keysToOmit.includes(option))
.reduce((obj, key) => {
obj[key] = object[key];
return obj;
}, {});
}