Try Math.round instead of Math.floor

This commit is contained in:
dangered wolf 2022-07-14 12:47:28 -04:00
parent 9cb2753747
commit 3cc6a3e674
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -49,14 +49,15 @@ export const renderPoll = async (card: TweetCard): Promise<string> => {
}
} else {
console.log('no choices found', values);
return '';
}
console.log(choices);
for (const [label, votes] of Object.entries(choices)) {
// render bar
const bar = '█'.repeat(Math.floor((votes / totalVotes || 0) * barLength));
const bar = '█'.repeat(Math.round((votes / totalVotes || 0) * barLength));
str += `${bar}
${label}  (${Math.floor((votes / totalVotes || 0) * 100)}%)
${label}  (${Math.round((votes / totalVotes || 0) * 100)}%)
`;
}