forked from olcxjas-softworks/LarpixClient
update electron to v43
This commit is contained in:
parent
68ac0beedf
commit
fb6c8b6ee9
5385 changed files with 513060 additions and 123058 deletions
19
electron/node_modules/@peculiar/utils/build/esm/encoding/base64url.js
generated
vendored
Normal file
19
electron/node_modules/@peculiar/utils/build/esm/encoding/base64url.js
generated
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
import { base64 } from "./base64.js";
|
||||
const BASE64URL_REGEX = /^[A-Za-z0-9_-]*$/;
|
||||
export function normalize(text) {
|
||||
return text.replace(/[\n\r\t ]/g, "");
|
||||
}
|
||||
export function is(text) {
|
||||
return typeof text === "string" && BASE64URL_REGEX.test(normalize(text));
|
||||
}
|
||||
export function encode(data, _options) {
|
||||
return base64.encode(data).replace(/\+/g, "-").replace(/\//g, "_").replace(/=+$/g, "");
|
||||
}
|
||||
export function decode(text, _options) {
|
||||
const normalized = normalize(text);
|
||||
if (!is(normalized)) {
|
||||
throw new TypeError("Input is not valid Base64Url text");
|
||||
}
|
||||
return base64.decode(base64.pad(normalized.replace(/-/g, "+").replace(/_/g, "/")));
|
||||
}
|
||||
export const base64url = { encode, decode, is, normalize };
|
||||
Loading…
Add table
Add a link
Reference in a new issue