1 2 3
export default function (count, singleWord, pluralWord) { return count === 1 ? singleWord : pluralWord; }