mirror of
https://github.com/diligencia/semantic-branch-version.git
synced 2024-11-24 04:13:52 +08:00
12 lines
273 B
JavaScript
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}`;
|
||
|
}
|