Closed admstesla closed 3 weeks ago
This PR addresses the [DEP0044] DeprecationWarning in Node.js, which suggests replacing the deprecated util.isArray with Array.isArray(). (below)
util.isArray
Array.isArray()
(node:38224) [DEP0044] DeprecationWarning: The util.isArrayAPI is deprecated. Please useArray.isArray() instead.
Needed to install diff@latest and vows@latest for npm test to pass.
diff@latest
vows@latest
npm test
duplication of https://github.com/jaredhanson/connect-flash/pull/57
This PR addresses the [DEP0044] DeprecationWarning in Node.js, which suggests replacing the deprecated
util.isArray
withArray.isArray()
. (below)(node:38224) [DEP0044] DeprecationWarning: The util.isArrayAPI is deprecated. Please useArray.isArray() instead.
Needed to install
diff@latest
andvows@latest
fornpm test
to pass.