setup-node/node_modules/@octokit/auth-token/dist-src/with-authorization-prefix.js
eric sciple 2b95e76931 .
2020-01-24 12:20:19 -05: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}`;
}