actions/node_modules/@octokit/auth-token/dist-src/with-authorization-prefix.js

10 lines
183 B
JavaScript
Raw Normal View History

2026-05-11 11:18:49 +02:00
function withAuthorizationPrefix(token) {
if (token.split(/\./).length === 3) {
return `bearer ${token}`;
}
return `token ${token}`;
}
export {
withAuthorizationPrefix
};