13 lines
274 B
JavaScript
Raw Normal View History

2020-07-04 15:41:06 +02: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
};
}