Socket
Socket
Sign inDemoInstall

ng-string

Package Overview
Dependencies
1
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

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.


Version published
Weekly downloads
57
decreased by-38.04%
Maintainers
1
Created
Weekly downloads
 

Readme

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

FAQs

Last updated on 18 Dec 2013

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc