I am deploying cloud function from my flutter app, and I get the following warning:
(node:14854) [DEP0040] DeprecationWarning: The punycode
module is deprecated. Please use a userland alternative instead.
(Use node --trace-deprecation ...
to show where the warning was created)
(node:14854) [DEP0044] DeprecationWarning: The util.isArray
API is deprecated. Please use Array.isArray()
instead.
Although after this warning, the cloud function deploys succesfully.
But why do I get this warning and Is there a fix?