Created
May 6, 2014 18:24
-
-
Save sylvaindethier/b196424cbb97f32c9181 to your computer and use it in GitHub Desktop.
Handlebars helper for pluralization
This file contains 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
/** | |
* Pluralization outputs singular or plural given a value | |
*/ | |
Handlebars.registerHelper('pluralize', function (value, singular, plural) { | |
return value > 1 ? plural : singular; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment