Skip to content

Commit

Permalink
run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
mirtyl-wacdec authored and martin-tomko-vacuumlabs committed Dec 8, 2022
1 parent c55f2c8 commit 631d332
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions paima-concise/src/consumer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const initialize = (input: string, version = EncodingVersion.V1): ConciseConsume
return nextValue ?? null;
},
remainingValues(): ConciseValue[] {
return this.conciseValues
return this.conciseValues;
},
popValue(): ConciseValue | null {
const nextValue = conciseValues.pop();
Expand All @@ -51,7 +51,7 @@ const initialize = (input: string, version = EncodingVersion.V1): ConciseConsume
},
valueCount(): number {
return this.conciseValues.length;
}
},
};
};

Expand Down

0 comments on commit 631d332

Please sign in to comment.