fix Hiro's fuckups again
parent
f68fff2a8b
commit
cb11be7602
|
@ -1,7 +1,6 @@
|
|||
/* eslint-disable no-constant-condition */
|
||||
import { promises as fs, accessSync, constants, writeFileSync } from 'fs';
|
||||
import { promisify } from 'util';
|
||||
import { join } from 'path';
|
||||
import { gzip, gzipSync, unzip } from 'zlib';
|
||||
|
||||
type JSONData = [{ key: string, value: any }?];
|
||||
|
@ -19,7 +18,7 @@ export default class LocalStorage {
|
|||
private locked: boolean = false;
|
||||
|
||||
constructor(dbName: string, dir = `${__dirname}/../../localstorage`) {
|
||||
this.storagePath = join(__dirname, '../../localstorage') || dir;
|
||||
this.storagePath = `${dir}/${dbName}.json.gz`;
|
||||
this.init();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue