ng-string

0.1.0 • Public • Published

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.

Readme

Keywords

none

Package Sidebar

Install

npm i ng-string

Weekly Downloads

105

Version

0.1.0

License

MIT

Last publish

Collaborators

  • demands