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