mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 09:49:28 +02:00
7 lines
416 B
JavaScript
7 lines
416 B
JavaScript
// Making the module version consumable via require - to prohibit
|
|
// multiple occurrancies of the same module in the same app
|
|
// (dual package hazard, https://nodejs.org/api/packages.html#dual-package-hazard)
|
|
import Dexie from "./dist/dexie.min.js";
|
|
const { liveQuery, mergeRanges, rangesOverlap, RangeSet, cmp } = Dexie;
|
|
export { liveQuery, mergeRanges, rangesOverlap, RangeSet, cmp, Dexie };
|
|
export default Dexie;
|