Get all the values
A promise if the driver is async, otherwise an array
const db = new GoodDB(new JSONDriver({path: './database.json'}));db.values(); Copy
const db = new GoodDB(new JSONDriver({path: './database.json'}));db.values();
const db = new GoodDB(new MongoDBDriver({uri: "..."}));await db.connect();await db.values(); Copy
const db = new GoodDB(new MongoDBDriver({uri: "..."}));await db.connect();await db.values();
Get all the values