Files
release-action/node_modules/@octokit/auth-token/dist-src/with-authorization-prefix.js
Nick Cipollo 1df3b9d90d
Some checks failed
PR Checks / check_pr (push) Has been cancelled
Prepare release 1.7.2
2020-07-20 19:20:24 -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}`;
}