ng-string
v0.1.0
Published
An angular module for string manipulation. Encapsulates the awesome npm string package.
Downloads
153
Readme
ng-string
An angularjs factory and set of filters encapsulating the awesome string.js library.
Comes with a factory called string
:
function AwesomeCtrl($scope, string) {
string('foobar').chompLeft('foo').s; // 'bar'
}
... and a set of filters matching the string.js operations:
{{mystring = 'this is a string'}}
{{mystring|stringCamelize}} becomes 'thisIsAString'
{{mystring|stringCapitalize}} becomes 'This is a string'
{{mystring|stringChompLeft:'string'}} becomes 'this is a '
{{mystring|stringChompRight:'this'}} becomes ' is a string'
etc, etc (more documentation at http://stringjs.com/)
Contributing
npm install
npm test
License
MIT.