Very useful lib! But since upgrading from version 1.0.6 to 1.0.7 I have been receiving the following error:
index.js:70 Uncaught TypeError: n.onProgress is not a function
at Worker.handler
I could track the issue down to the new onProgress option. It seems that the default value is not working as expected when custom options are provided without an onProgress handler, e.g.:
Very useful lib! But since upgrading from version
1.0.6
to1.0.7
I have been receiving the following error:I could track the issue down to the new
onProgress
option. It seems that the default value is not working as expected when customoptions
are provided without anonProgress
handler, e.g.:My current workaround is to add
onProgress: () => null
to the
options
object.