setup-node/node_modules/@octokit/auth-token/dist-src/auth.js
eric sciple 2b95e76931 .
2020-01-24 12:20:19 -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
};
}