4
0
Fork 0
mirror of https://github.com/Azure/setup-helm.git synced 2025-11-07 04:56:56 +00:00
setup-helm/node_modules/@octokit/auth-token/dist-src/with-authorization-prefix.js
github-actions[bot] 84b304dfb7
v3 new release (#87)
add token
2022-07-25 13:23:27 -04:00

11 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}`;
}