Files
release-action/node_modules/@octokit/auth-token/dist-src/with-authorization-prefix.js
Nick Cipollo c4bf6c1ab0
Some checks failed
Test / check_pr (push) Has been cancelled
Prepare 1.8.10 release
2021-10-03 19:49:26 -04:00

12 lines
273 B
JavaScript

/**
* 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}`;
}