mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-17 15:32:50 +00: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
|
|
};
|