import { getDbFile } from './getDbFile'; import Loki from 'lokijs'; let db: Loki; export async function getDb(): Promise { if (!db) { db = new Loki(await getDbFile()); } return db; }