actions/node_modules/@octokit/auth-token/dist-src/with-authorization-prefix.js
2026-05-11 11:18:49 +02:00

9 lines
183 B
JavaScript

function withAuthorizationPrefix(token) {
if (token.split(/\./).length === 3) {
return `bearer ${token}`;
}
return `token ${token}`;
}
export {
withAuthorizationPrefix
};