jexidb 1.0.5 → 1.0.8

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/.gitattributes CHANGED
@@ -1,2 +1,2 @@
1
- # Auto detect text files and perform LF normalization
2
- * text=auto
1
+ # Auto detect text files and perform LF normalization
2
+ * text=auto
package/README.md CHANGED
@@ -62,7 +62,7 @@ await db.insert({ id: 2, name: 'Jane Doe', anyArbitraryField: '1' });
62
62
  The `query` method allows you to retrieve data based on specific criteria. You can specify criteria for multiple fields.
63
63
 
64
64
  ```javascript
65
- const results = await db.query({ name: 'John Doe' });
65
+ const results = await db.query({ name: 'John Doe' }, { caseInsensitive: true });
66
66
  console.log(results); // [{ id: 1, name: 'John Doe' }]
67
67
  ```
68
68