@anfenn/dync 1.0.9 → 1.0.11
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 +2 -2
- package/dist/{chunk-MOYMEJP5.js → chunk-6B5N26W3.js} +1 -1
- package/dist/{chunk-MOYMEJP5.js.map → chunk-6B5N26W3.js.map} +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/react/index.js +1 -1
- package/package.json +1 -1
- package/src/storage/sqlite/SQLiteCollection.ts +0 -1
package/dist/index.js
CHANGED
package/dist/react/index.js
CHANGED
package/package.json
CHANGED
|
@@ -214,7 +214,6 @@ export class SQLiteCollection<T = any> implements StorageCollection<T> {
|
|
|
214
214
|
}
|
|
215
215
|
|
|
216
216
|
async sortBy(key: string): Promise<T[]> {
|
|
217
|
-
// Use native SQL ORDER BY instead of JS sorting
|
|
218
217
|
const entries = await this.executeQuery({
|
|
219
218
|
orderByOverride: { index: key, direction: 'asc' },
|
|
220
219
|
});
|