blob: 0a16a559c997ff56c0db601ec2ccdf63423d89c9 [file] [log] [blame]
'use strict';
module.exports = function (str, plural, count) {
if (typeof plural === 'number') {
count = plural;
plural = str + 's';
}
return count === 1 ? str : plural;
};