diff --git a/src/InMemoryProvider.ts b/src/InMemoryProvider.ts index 2a16f48..8869631 100644 --- a/src/InMemoryProvider.ts +++ b/src/InMemoryProvider.ts @@ -64,12 +64,12 @@ export interface StoreData { export interface ILiveConsumerConfigs { usePushForGetRange: boolean; -}; +} export type GetLiveConsumerConfigsFn = () => ILiveConsumerConfigs; const defaultLiveConsumerConfigs: ILiveConsumerConfigs = { - usePushForGetRange: false + usePushForGetRange: false, }; export class InMemoryProvider extends DbProvider { @@ -765,7 +765,7 @@ class InMemoryIndex extends DbIndexFTSFromRangeQueries { let values = [] as ItemType[]; const { usePushForGetRange } = this.getLiveConfigs(); const pushValues = (values: ItemType[], newValues: ItemType[]) => { - newValues.forEach(v => values.push(v)); + newValues.forEach((v) => values.push(v)); return values; }; const concatValues = (values: ItemType[], newValues: ItemType[]) => {