mirror of
https://github.com/Azure/setup-helm.git
synced 2026-04-18 20:15:45 +00:00
Adding graphql to query helm release versions
This commit is contained in:
parent
d55017e2a0
commit
b795bf3881
270 changed files with 71564 additions and 148 deletions
8
node_modules/@octokit/endpoint/dist-src/util/omit.js
generated
vendored
Normal file
8
node_modules/@octokit/endpoint/dist-src/util/omit.js
generated
vendored
Normal 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;
|
||||
}, {});
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue