-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Spread syntax requires ...iterable[Symbol.iterator] to be a function #34
Comments
Hi My code:
The error:
|
Thanks for providing your code. I did not verify this, but this is probably my fault for not documenting the types. The |
any update? |
I have a same issue and this can't fix issue resizeImage(file: Blob) {
const buffer = new Uint8Array(await file.arrayBuffer())
const optimizedImage = await heicConvert({
buffer,
format: 'JPEG',
quality: 80,
});
} |
hello
im trying to add heic file in my next js 14 app with formData on my windows machine using this code
and i got error like this: Spread syntax requires ...iterable[Symbol.iterator] to be a function
is this because im upload from my windows machine?
The text was updated successfully, but these errors were encountered: