1
0
mirror of https://github.com/Minionguyjpro/Inno-Setup-Action synced 2026-02-18 17:41:18 +01:00

Remove node modules

This commit is contained in:
Russell Banks
2023-12-12 09:31:29 +00:00
committed by GitHub
parent 016d9d2047
commit b198d6d0c9
416 changed files with 0 additions and 97766 deletions

View File

@@ -1,11 +0,0 @@
/**
* 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}`;
}