diff options
author | Florrie <towerofnix@gmail.com> | 2019-11-24 18:48:33 -0400 |
---|---|---|
committer | Florrie <towerofnix@gmail.com> | 2019-11-24 18:48:33 -0400 |
commit | 98ef13f91132738e57ec800c687f16959ca99d3c (patch) | |
tree | 4cc4c12b47aa8fb109d1d3907010ebcc8582acd0 /upd8-util.js | |
parent | d7290a5803285117da60637ed7b4ef8b54402561 (diff) |
listings; about & credits; other fancy things
...that i don't exactly remember :)
Diffstat (limited to 'upd8-util.js')
-rw-r--r-- | upd8-util.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/upd8-util.js b/upd8-util.js index 2fe2fcc8..cd0beedf 100644 --- a/upd8-util.js +++ b/upd8-util.js @@ -69,3 +69,8 @@ module.exports.th = function (n) { return n + 'th'; } }; + +// My function names just keep getting 8etter. +module.exports.s = function (n, word) { + return `${n} ${word}` + (n === 1 ? '' : 's'); +}; |