packages/votes-histogram/src/widgets/helpers/format-votes.ts (
6
lines of code) (
raw
):
export function formatVotes(votes: number): string { if (votes === 1) { return 'vote'; } return 'votes'; }