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

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;
}, {});
}