UNPKG

@gang-js/core

Version:

a state sharing algorithm

4 lines (3 loc) 147 B
export function base64UrlToBytes(value) { return Uint8Array.from(atob(value.replace(/-/g, '+').replace(/_/g, '/')), (c) => c.charCodeAt(0)); }