mirror of
https://github.com/praktimarc/kst4contest.git
synced 2026-07-14 08:36:41 +02:00
4 lines
107 B
JavaScript
4 lines
107 B
JavaScript
export default function (count, singleWord, pluralWord) {
|
|
return count === 1 ? singleWord : pluralWord;
|
|
}
|