File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -64,12 +64,12 @@ export interface StoreData {
64
64
65
65
export interface ILiveConsumerConfigs {
66
66
usePushForGetRange : boolean ;
67
- } ;
67
+ }
68
68
69
69
export type GetLiveConsumerConfigsFn = ( ) => ILiveConsumerConfigs ;
70
70
71
71
const defaultLiveConsumerConfigs : ILiveConsumerConfigs = {
72
- usePushForGetRange : false
72
+ usePushForGetRange : false ,
73
73
} ;
74
74
75
75
export class InMemoryProvider extends DbProvider {
@@ -765,7 +765,7 @@ class InMemoryIndex extends DbIndexFTSFromRangeQueries {
765
765
let values = [ ] as ItemType [ ] ;
766
766
const { usePushForGetRange } = this . getLiveConfigs ( ) ;
767
767
const pushValues = ( values : ItemType [ ] , newValues : ItemType [ ] ) => {
768
- newValues . forEach ( v => values . push ( v ) ) ;
768
+ newValues . forEach ( ( v ) => values . push ( v ) ) ;
769
769
return values ;
770
770
} ;
771
771
const concatValues = ( values : ItemType [ ] , newValues : ItemType [ ] ) => {
You can’t perform that action at this time.
0 commit comments