mirror of
https://github.com/ASzc/change-string-case-action.git
synced 2024-11-24 01:33:50 +08:00
10 lines
183 B
JavaScript
10 lines
183 B
JavaScript
function withAuthorizationPrefix(token) {
|
|
if (token.split(/\./).length === 3) {
|
|
return `bearer ${token}`;
|
|
}
|
|
return `token ${token}`;
|
|
}
|
|
export {
|
|
withAuthorizationPrefix
|
|
};
|