github-pages-deploy-action/node_modules/@octokit/auth-token/dist-src/auth.js
2020-03-02 08:16:42 -05:00

13 lines
274 B
JavaScript

export async function auth(token) {
const tokenType = token.split(/\./).length === 3
? "app"
: /^v\d+\./.test(token)
? "installation"
: "oauth";
return {
type: "token",
token: token,
tokenType
};
}