@bbn/bbn 2.0.246 → 2.0.248
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bbn.js +3 -3
- package/dist/bbn.js.map +1 -1
- package/dist/bbn.sw.js +3 -3
- package/dist/bbn.sw.js.map +1 -1
- package/dist/db/classes/Center.js +1 -1
- package/dist/db/classes/Object.js +0 -4
- package/package.json +1 -1
|
@@ -55,7 +55,7 @@ export default class bbnDbCenter {
|
|
|
55
55
|
if (!database) {
|
|
56
56
|
throw new Error('Missing database name for object method');
|
|
57
57
|
}
|
|
58
|
-
bbn.fn.log(`Executing object method: ${action} on database: ${database}`);
|
|
58
|
+
//bbn.fn.log(`Executing object method: ${action} on database: ${database}`);
|
|
59
59
|
const dbo = await bbnDb.open(database);
|
|
60
60
|
const fn = dbo[action];
|
|
61
61
|
if (typeof fn !== 'function') {
|
|
@@ -589,10 +589,6 @@ const db = {
|
|
|
589
589
|
},
|
|
590
590
|
async open(database, version) {
|
|
591
591
|
//log("Hello " + database)
|
|
592
|
-
if (database !== 'bbn') {
|
|
593
|
-
log("THERE SHOULD BE A DEBUGGER!!!!!!!");
|
|
594
|
-
debugger;
|
|
595
|
-
}
|
|
596
592
|
if (!idb) {
|
|
597
593
|
throw new Error(_('IndexedDB is not available'));
|
|
598
594
|
}
|