Skip to content

Instantly share code, notes, and snippets.

@there4
Created September 6, 2012 01:41
Show Gist options
  • Save there4/3649738 to your computer and use it in GitHub Desktop.
Save there4/3649738 to your computer and use it in GitHub Desktop.
Handlebars pluralization helper
// usage: {{pluralize collection.length 'quiz' 'quizzes'}}
Handlebars.registerHelper('pluralize', function(number, single, plural) {
return (number === 1) ? single : plural;
});
@warpling
Copy link

Exactly what I needed! Thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment