With the new Node.js 22 release, we have runtime deprecated util.isArray and in node 23 we plan to completely remove it.
|
if (util.isArray(value)) { |
This line of code will cause failure in consumers of this package like
fastify.
nodejs/node#52744 (comment)
I'll create a PR to help migrating
util.isArray to
Array.isArray
With the new Node.js 22 release, we have runtime deprecated
util.isArrayand in node 23 we plan to completely remove it.form-data/lib/form_data.js
Line 64 in 53adbd8
This line of code will cause failure in consumers of this package like
fastify.nodejs/node#52744 (comment)
I'll create a PR to help migrating
util.isArraytoArray.isArray