You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

ng-string

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ng-string

An angular module for string manipulation. Encapsulates the awesome npm string package.

0.1.0
latest
Source
npm
Version published
Weekly downloads
135
15.38%
Maintainers
1
Weekly downloads
 
Created
Source

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.

Keywords

angularjs

FAQs

Package last updated on 18 Dec 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts