change-string-case/node_modules/@octokit/auth-token/dist-src/auth.js
2020-07-29 10:28:09 -06: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
};
}