mirror of
https://github.com/ente-io/ente.git
synced 2025-08-08 15:30:40 +00:00
[web] Remove leftover console log (#1325)
This commit is contained in:
commit
360aa2903f
@ -16,7 +16,6 @@ Comlink.expose(DedicatedConvertWorker, self);
|
|||||||
* Both the input and output are blobs.
|
* Both the input and output are blobs.
|
||||||
*/
|
*/
|
||||||
export const convertHEICToJPEG = async (heicBlob: Blob): Promise<Blob> => {
|
export const convertHEICToJPEG = async (heicBlob: Blob): Promise<Blob> => {
|
||||||
console.log("test")
|
|
||||||
const filedata = await getUint8ArrayView(heicBlob);
|
const filedata = await getUint8ArrayView(heicBlob);
|
||||||
const result = await HeicConvert({ buffer: filedata, format: "JPEG" });
|
const result = await HeicConvert({ buffer: filedata, format: "JPEG" });
|
||||||
const convertedFileData = new Uint8Array(result);
|
const convertedFileData = new Uint8Array(result);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user