UNPKG

@proca/widget

Version:

Proca is an open-source campaign toolkit designed to empower activists and organisations in their digital advocacy efforts. It provides a flexible and customisable platform for creating and managing online petitions, email campaigns, and other forms of di

8 lines (7 loc) 208 B
export const binaryToBase64 = binary => btoa(String.fromCharCode(...binary)); export const base64ToBinary = base64 => new Uint8Array( atob(base64) .split("") .map(x => x.charCodeAt(0)) );