Skip to content

Commit 726aa2a

Browse files
committed
prettier
1 parent 10f5532 commit 726aa2a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: src/InMemoryProvider.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,12 @@ export interface StoreData {
6464

6565
export interface ILiveConsumerConfigs {
6666
usePushForGetRange: boolean;
67-
};
67+
}
6868

6969
export type GetLiveConsumerConfigsFn = () => ILiveConsumerConfigs;
7070

7171
const defaultLiveConsumerConfigs: ILiveConsumerConfigs = {
72-
usePushForGetRange: false
72+
usePushForGetRange: false,
7373
};
7474

7575
export class InMemoryProvider extends DbProvider {
@@ -765,7 +765,7 @@ class InMemoryIndex extends DbIndexFTSFromRangeQueries {
765765
let values = [] as ItemType[];
766766
const { usePushForGetRange } = this.getLiveConfigs();
767767
const pushValues = (values: ItemType[], newValues: ItemType[]) => {
768-
newValues.forEach(v => values.push(v));
768+
newValues.forEach((v) => values.push(v));
769769
return values;
770770
};
771771
const concatValues = (values: ItemType[], newValues: ItemType[]) => {

0 commit comments

Comments
 (0)