1
0
Fork 0
peertube/client/src/root-helpers/images.ts

16 lines
356 B
TypeScript

import { logger } from './logger'
function imageToDataURL (input: File | Blob) {
return new Promise<string>(res => {
const reader = new FileReader()
reader.onerror = err => logger.error('Cannot read input file.', err)
reader.onloadend = () => res(reader.result as string)
reader.readAsDataURL(input)
})
}
export {
imageToDataURL
}