Compare commits

..

No commits in common. "master" and "v1.3.0" have entirely different histories.

2 changed files with 2 additions and 1 deletions

View File

@ -684,6 +684,7 @@ function wrap(db, dir, dbsMap) {
}
function promisify(key) {
console.log('db[key]', key);
if ('function' !== typeof db[key] || /Async$/.test(key) || db[key + 'Async']) { return; }
db[key + 'Async'] = require('util').promisify(db[key]);
}

View File

@ -1,6 +1,6 @@
{
"name": "masterquest-sqlite3",
"version": "1.3.1",
"version": "1.3.0",
"description": "A NoSQL / SQLite3 Hybrid. All your indices are belong to us. Master Quest.",
"main": "lib/dbwrap",
"scripts": {