mirror of
https://github.com/h44z/wg-portal.git
synced 2026-05-05 13:56:24 +00:00
7 lines
204 B
JavaScript
7 lines
204 B
JavaScript
export function base64_url_encode(input) {
|
|
let output = btoa(input)
|
|
output = output.replaceAll('+', '.')
|
|
output = output.replaceAll('/', '_')
|
|
output = output.replaceAll('=', '-')
|
|
return output
|
|
} |