Skip to content

Commit

Permalink
version 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ismailcankaratas committed Jun 8, 2022
1 parent 6021bb3 commit 989a692
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion operations/add.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ function add(arrayName, data) {
newData[arrayName].push(data)
} else {
log(`${arrayName} is not an array.`, "Error", "error");
}
}
} else {
newData[arrayName] = []
newData[arrayName].push(data);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dbcopycat",
"version": "0.3.2",
"version": "0.4.0",
"description": "A JSON Database that saves your Json data in a file and makes it easy for you to perform CRUD operations.",
"main": "local.js",
"license": "ISC",
Expand Down

0 comments on commit 989a692

Please sign in to comment.