clapper / src /lib /utils /base64DataUriToUint8Array.ts
jbilcke-hf's picture
jbilcke-hf HF staff
add linter and prettifier
c1f12bf
raw
history blame
No virus
173 Bytes
export function base64DataUriToUint8Array(dataURI: string): Uint8Array {
return Uint8Array.from(atob(dataURI.replace(/^data[^,]+,/, '')), (v) =>
v.charCodeAt(0)
)
}