Upgrade octokit to v4.1.2
This commit is contained in:
parent
dbbcbe019d
commit
c1745a9831
1214 changed files with 160765 additions and 0 deletions
15
node_modules/@octokit/auth-unauthenticated/dist-src/index.js
generated
vendored
Normal file
15
node_modules/@octokit/auth-unauthenticated/dist-src/index.js
generated
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import { auth } from "./auth.js";
|
||||
import { hook } from "./hook.js";
|
||||
const createUnauthenticatedAuth = function createUnauthenticatedAuth2(options) {
|
||||
if (!options || !options.reason) {
|
||||
throw new Error(
|
||||
"[@octokit/auth-unauthenticated] No reason passed to createUnauthenticatedAuth"
|
||||
);
|
||||
}
|
||||
return Object.assign(auth.bind(null, options.reason), {
|
||||
hook: hook.bind(null, options.reason)
|
||||
});
|
||||
};
|
||||
export {
|
||||
createUnauthenticatedAuth
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue