@bbn/bbn 1.0.88 → 1.0.89
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/bundle.js +1 -1
- package/dist/db.js +1 -1
- package/package.json +1 -1
package/dist/bundle.js
CHANGED
|
@@ -745,7 +745,7 @@
|
|
|
745
745
|
"use strict";
|
|
746
746
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
747
747
|
exports.db = void 0;
|
|
748
|
-
const idb = indexedDB || window['webkitIndexedDB'] || window['mozIndexedDB'] || window['OIndexedDB'] || window['msIndexedDB'];
|
|
748
|
+
const idb = window['indexedDB'] || window['webkitIndexedDB'] || window['mozIndexedDB'] || window['OIndexedDB'] || window['msIndexedDB'];
|
|
749
749
|
const dbObject = function (dbName) {
|
|
750
750
|
const conn = db._connections[dbName];
|
|
751
751
|
const structure = db._structures[dbName];
|
package/dist/db.js
CHANGED
|
@@ -2,7 +2,7 @@ import { _ } from './_';
|
|
|
2
2
|
import { each } from './fn/loop/each';
|
|
3
3
|
import { iterate } from './fn/loop/iterate';
|
|
4
4
|
import { log } from './fn/browser/log';
|
|
5
|
-
const idb = indexedDB || window['webkitIndexedDB'] || window['mozIndexedDB'] || window['OIndexedDB'] || window['msIndexedDB'];
|
|
5
|
+
const idb = window['indexedDB'] || window['webkitIndexedDB'] || window['mozIndexedDB'] || window['OIndexedDB'] || window['msIndexedDB'];
|
|
6
6
|
const dbObject = function (dbName) {
|
|
7
7
|
const conn = db._connections[dbName];
|
|
8
8
|
const structure = db._structures[dbName];
|