I get the following error trying to register a plugin in fastify v3, which uses avvio which uses this library:
'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them
stack trace:
it seams that fastq is using worker.call(), when worker is an argument (assigned from context argument), but using argument.call() is desecrated from es5
I get the following error trying to register a plugin in fastify v3, which uses avvio which uses this library:
'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them
stack trace:it seams that fastq is using
worker.call()
, when worker is an argument (assigned fromcontext
argument), but usingargument.call()
is desecrated from es5Hope I'm not missing anything