mirror of
https://github.com/diligencia/semantic-branch-version.git
synced 2024-11-24 04:13:52 +08:00
15 lines
529 B
JavaScript
15 lines
529 B
JavaScript
|
import { auth } from "./auth";
|
||
|
import { hook } from "./hook";
|
||
|
export const createTokenAuth = function createTokenAuth(token) {
|
||
|
if (!token) {
|
||
|
throw new Error("[@octokit/auth-token] No token passed to createTokenAuth");
|
||
|
}
|
||
|
if (typeof token !== "string") {
|
||
|
throw new Error("[@octokit/auth-token] Token passed to createTokenAuth is not a string");
|
||
|
}
|
||
|
token = token.replace(/^(token|bearer) +/i, "");
|
||
|
return Object.assign(auth.bind(null, token), {
|
||
|
hook: hook.bind(null, token)
|
||
|
});
|
||
|
};
|