moonlifedb
Version:
A JSON database with a bunch of tools and typescript support.
18 lines (17 loc) • 503 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LocalStorage = void 0;
const CoreCheck_1 = require("../CoreCheck");
const lib = new CoreCheck_1.Memory();
class LocalStorage {
tablePath;
/**
* LocalStorage adapter for the database app
* @param options
* @param path a path to the folder, where to store data
*/
constructor(options) {
this.tablePath = options.path;
}
}
exports.LocalStorage = LocalStorage;