8 lines
139 B
JavaScript
8 lines
139 B
JavaScript
export function encode(string) {
|
|
return globalThis.btoa(string);
|
|
}
|
|
|
|
export function decode(string) {
|
|
return globalThis.atob(string);
|
|
}
|