DeprecationWarning: The `util.isArray` API is deprecated. Please use `Array.isArray()` instead.
Author: ipseonet-devCreated Dec 28, 2024Updated Feb 25, 2025
nedb/lib/indexes.js:69:12
if (util.isArray(doc)) { this.insertMultipleDocs(doc); return; }recommended to be
if (Array.isArray(doc)) { this.insertMultipleDocs(doc); return; }Source: louischatriot/nedb