Created
April 25, 2018 08:20
-
-
Save edelvalle/d6aa6dd911f6ae86f0480c88e7f60c25 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pluralize: (amount, singular, plural) -> | |
if not amount? | |
amount = 0 | |
if _.isArray amount | |
amount = amount.length | |
if amount is 1 then singular else plural |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment