mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2025-04-05 21:01:40 +03:00
18 lines
347 B
JavaScript
18 lines
347 B
JavaScript
/**
|
|
*
|
|
* @name DiscordTickets
|
|
* @author eartharoid <contact@eartharoid.me>
|
|
* @license GNU-GPLv3
|
|
*
|
|
*/
|
|
|
|
module.exports = {
|
|
/**
|
|
* @description Appends 's' to a word if plural number
|
|
* @param {string} word - singular version of word
|
|
* @param {number} num - integer
|
|
*/
|
|
plural(word, num) {
|
|
return num !== 1 ? word + 's' : word;
|
|
}
|
|
}; |