twin-db 1.1.1 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -86,3 +86,7 @@ database.pull('hobbies', 'cs', 'sleep') // now the hobbies is ["pizza", "valoran
|
|
|
86
86
|
}
|
|
87
87
|
}
|
|
88
88
|
```
|
|
89
|
+
## Updates
|
|
90
|
+
`MM/DD/YYYY`<br>
|
|
91
|
+
04/09/2026 - 1.1.*
|
|
92
|
+
- Now **sum**, **sub** and **push** sets the value to the value you passed in execution when the path does not exists.
|
package/dist/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { TwinDB } from './structures/database';
|
|
1
|
+
import { TwinDB } from './structures/database.js';
|
|
2
2
|
export default TwinDB;
|