semantic-branch-version/node_modules/@octokit/auth-token/dist-src/auth.js

13 lines
274 B
JavaScript
Raw Permalink Normal View History

2020-07-04 21:41:06 +08:00
export async function auth(token) {
const tokenType = token.split(/\./).length === 3
? "app"
: /^v\d+\./.test(token)
? "installation"
: "oauth";
return {
type: "token",
token: token,
tokenType
};
}