From af07eca64eb40885cbf0635c5293a1e4404dc71b Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Mon, 29 Apr 2024 23:17:16 -0400 Subject: [PATCH] Use intl format for numbers --- src/render/instantview.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/render/instantview.ts b/src/render/instantview.ts index f2594cc..b770edd 100644 --- a/src/render/instantview.ts +++ b/src/render/instantview.ts @@ -201,7 +201,7 @@ const generateStatusFooter = (status: APIStatus, isQuote = false, author: APIUse }; const generatePoll = (poll: APIPoll, language: string): string => { - // const formatNumber = Intl.NumberFormat(language ?? 'en') + const intlFormat = Intl.NumberFormat(language ?? 'en'); let str = ''; const barLength = 20; @@ -209,10 +209,10 @@ const generatePoll = (poll: APIPoll, language: string): string => { poll.choices.forEach(choice => { const bar = '█'.repeat((choice.percentage / 100) * barLength); // eslint-disable-next-line no-irregular-whitespace - str += `${bar}
${choice.label}
${choice.count} votes, ${choice.percentage}%
`; + str += `${bar}
${choice.label}
${intlFormat.format(choice.count)} votes, ${intlFormat.format(choice.percentage)}%
`; }); /* Finally, add the footer of the poll with # of votes and time left */ - str += `
${formatNumber(poll.total_votes)} votes · ${poll.time_left_en}`; + str += `
${intlFormat.format(poll.total_votes)} votes · ${poll.time_left_en}`; return str; };