debug
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
export class Base64Url {
|
||||
encode(str) {
|
||||
return btoa(encodeURIComponent(str).replace(/%([0-9A-F]{2})/g,
|
||||
function toSolidBytes(match, p1) {
|
||||
return String.fromCharCode('0x' + p1);
|
||||
}));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user