@advdominion/pluralize

This commit is contained in:
Valentin Silytuin
2024-05-03 19:34:19 +04:00
parent 205ea19086
commit 0bb60a0e0a
3 changed files with 39 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
export const pluralize = (count, words) => {
count = Math.abs(count) % 100;
const count10 = count % 10;
if (count > 10 && count < 20) {
return words[2];
}
if (count10 > 1 && count10 < 5) {
return words[1];
}
if (count10 === 1) {
return words[0];
}
return words[2];
};