Skip to content

Commit

Permalink
Merge branch 'eslachance:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-online committed May 17, 2024
2 parents 1969cdf + 323d322 commit a5b98d5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "enmap",
"version": "6.0.0",
"version": "6.0.1",
"description": "A simple database wrapper to make sqlite database interactions much easier for beginners, with additional array helper methods.",
"main": "src/index.js",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ class Enmap {
for (const entry of parsedData.keys) {
const { key, value } = entry;
if (!overwrite && this.has(key)) continue;
this.#set(key, this.#parse(value));
this.#set(key, value);
}
}

Expand Down

0 comments on commit a5b98d5

Please sign in to comment.