Skip to content

Instantly share code, notes, and snippets.

@edelvalle
Created April 25, 2018 08:20
Show Gist options
  • Save edelvalle/d6aa6dd911f6ae86f0480c88e7f60c25 to your computer and use it in GitHub Desktop.
Save edelvalle/d6aa6dd911f6ae86f0480c88e7f60c25 to your computer and use it in GitHub Desktop.
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