An angularjs factory and set of filters encapsulating the awesome string.js library.
Comes with a factory called string
:
myApp = angular.module('myapp', ['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/)
npm install
npm test
MIT.