@advdominion/pluralize
This commit is contained in:
14
packages/pluralize/index.js
Normal file
14
packages/pluralize/index.js
Normal 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];
|
||||
};
|
||||
Reference in New Issue
Block a user