change-string-case/node_modules/@octokit/auth-token/dist-src/auth.js
2022-11-03 10:55:07 -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
};
}