Skip to content

Commit

Permalink
Update base64url.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
TimoGlastra authored Jan 27, 2024
1 parent 967f26e commit ffd68da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/utils/src/base64url.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ export class Base64url {
}
}

export function base64ToBase64URL(base64: string) {
function base64ToBase64URL(base64: string) {
return base64.replace(/\+/g, '-').replace(/\//g, '_').replace(/=/g, '')
}

0 comments on commit ffd68da

Please sign in to comment.