ai-tube / src /lib /data /getContentType.ts
jbilcke-hf's picture
jbilcke-hf HF staff
working on some new features
3d4392e
raw history blame
No virus
201 Bytes
export function getContentType(dataUri: string): string {
const beforeBase64 = dataUri.split(";base64,").shift() || ""
const afterData = beforeBase64.split("data:").pop() || ""
return afterData
}