Compare commits

..

5 commits

Author SHA1 Message Date
Killer Boss Original
c902d92711
Fix 2023-04-12 18:42:15 +02:00
Killer Boss Original
90670ebb7b
. 2023-04-12 18:37:16 +02:00
Killer Boss Original
363492aef5
test 2023-04-12 18:29:31 +02:00
Killer Boss Original
41d589ccbc
Merge pull request #13 from ThunderNetworkRaD/dependabot/npm_and_yarn/typescript-5.0.3
Bump typescript from 4.9.5 to 5.0.3
2023-04-03 12:36:28 +02:00
dependabot[bot]
74f4f42e50
Bump typescript from 4.9.5 to 5.0.3
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 4.9.5 to 5.0.3.
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](https://github.com/Microsoft/TypeScript/commits)

---
updated-dependencies:
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-04-03 08:05:46 +00:00
2 changed files with 15 additions and 11 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "mit.db", "name": "mit.db",
"version": "2023.02.23-1", "version": "2023.04.12",
"description": "An easy and quick database", "description": "An easy and quick database",
"main": "build/index.js", "main": "build/index.js",
"types": "build/index.d.ts", "types": "build/index.d.ts",
@ -11,7 +11,7 @@
"type": "git", "type": "git",
"url": "git+https://github.com/ThunderNetworkRaD/mit.db.git" "url": "git+https://github.com/ThunderNetworkRaD/mit.db.git"
}, },
"author": "Thunder Network Development | Killer Boss Original", "author": "ThunderNetworkRaD | Killer Boss Original",
"license": "ISC", "license": "ISC",
"bugs": { "bugs": {
"url": "https://github.com/ThunderNetworkRaD/mit.db/issues" "url": "https://github.com/ThunderNetworkRaD/mit.db/issues"
@ -20,6 +20,6 @@
"devDependencies": { "devDependencies": {
"@types/node": "^18.14.0", "@types/node": "^18.14.0",
"tslib": "^2.4.1", "tslib": "^2.4.1",
"typescript": "^4.9.5" "typescript": "^5.0.3"
} }
} }

View file

@ -5,6 +5,9 @@ const writeDB = promisify(fs.writeFile);
class MitDB { class MitDB {
readonly db; readonly db;
filename: string;
options: any;
dirname: string;
/** /**
* @constructor * @constructor
@ -13,17 +16,18 @@ class MitDB {
* @param options Options to pass in the constructor * @param options Options to pass in the constructor
* @param options.dirname where to put the database? * @param options.dirname where to put the database?
*/ */
constructor(fn: string, options?: { dirname: string }) { constructor(filename: string, options?: { dirname: string }) {
let dirname;
if (options && options.dirname) { if (options && options.dirname) {
dirname = options.dirname; this.dirname = options.dirname;
} else { } else {
dirname = 'data'; this.dirname = 'data';
} }
if (!fs.existsSync(dirname)) fs.mkdirSync(dirname); this.filename = filename;
this.db = `./${dirname}/${fn}` if (!fs.existsSync(this.dirname)) fs.mkdirSync(this.dirname);
this.db = `./${this.dirname}/${this.filename}`;
} }
/** /**
@ -97,7 +101,7 @@ class MitDB {
/** /**
* *
* @param callbackfn * @param callbackfilename
*/ */
forEach(callback: (value: any, key: any) => void) { forEach(callback: (value: any, key: any) => void) {
const file = fs.readFileSync(this.db); const file = fs.readFileSync(this.db);