auth-api/tests/node_modules/plur/index.js

10 lines
181 B
JavaScript
Raw Normal View History

2021-06-23 22:30:45 +02:00
'use strict';
module.exports = function (str, plural, count) {
if (typeof plural === 'number') {
count = plural;
plural = str + 's';
}
return count === 1 ? str : plural;
};