UNPKG

bfx-hf-models-adapter-lowdb

Version:
14 lines (8 loc) 240 B
'use strict' const ensureCollection = require('../util/ensure_collection') module.exports = async (db, { path }) => { ensureCollection(db, path) const nRows = db.get(path).value().length db.set(path, []).write() return nRows }