mirror of
https://github.com/actions/hello-world-javascript-action.git
synced 2025-04-06 06:29:38 +00:00
Add octokit
This commit is contained in:
9
node_modules/@octokit/endpoint/dist-src/util/lowercase-keys.js
generated
vendored
Executable file
9
node_modules/@octokit/endpoint/dist-src/util/lowercase-keys.js
generated
vendored
Executable file
@ -0,0 +1,9 @@
|
||||
export function lowercaseKeys(object) {
|
||||
if (!object) {
|
||||
return {};
|
||||
}
|
||||
return Object.keys(object).reduce((newObj, key) => {
|
||||
newObj[key.toLowerCase()] = object[key];
|
||||
return newObj;
|
||||
}, {});
|
||||
}
|
Reference in New Issue
Block a user