First upload version 0.0.1
This commit is contained in:
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
|
||||
};
|
||||
Reference in New Issue
Block a user