mirror of
https://github.com/cdr/code-server.git
synced 2025-12-10 18:33:53 +01:00
8 lines
529 B
TypeScript
8 lines
529 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
export function toBase64UrlEncoding(base64string: string) {
|
|
return base64string.replace(/=/g, '').replace(/\+/g, '-').replace(/\//g, '_'); // Need to use base64url encoding
|
|
}
|