1.0.1 • Published 8 years ago

ngPluralizeFilter v1.0.1

Weekly downloads
180
License
MIT
Repository
github
Last release
8 years ago

ngPluralizeFilter

Travis

Angular filter that transforms english nouns into its plural form.

  • vogon -> vogons
  • person -> people
  • ox -> oxen
  • cherry -> cherries

Installation

bower install ng-pluralize-filter --save

Example usage

<html ng-app="app">
<head>
  <script src="bower_components/angular/angular.js"></script>
  <script src="bower_components/ng-pluralize-filter/ng-pluralize-filter.js"></script>
  <script>
    angular.module('app', ['ngPluralizeFilter']);
  </script>
</head>
<body>{{'cat' | pluralize}}</body>
</html>

Contributing

npm install
bower install
gulp

Todo

This is a work in progress in terms of handling pluralisation edge cases. If you find any just create an issue or pull request. Thank you.