wishthis/node_modules/@octokit/auth-token/dist-src/with-authorization-prefix.js

12 lines
273 B
JavaScript
Raw Normal View History

2022-01-21 08:28:41 +00:00
/**
* Prefix token for usage in the Authorization header
*
* @param token OAuth token or JSON Web Token
*/
export function withAuthorizationPrefix(token) {
if (token.split(/\./).length === 3) {
return `bearer ${token}`;
}
return `token ${token}`;
}