Convert a camelcase or space-separated string to a plus-separated string.
npm install plusify> Convert a camelcase or space-separated string to a plus-separated string.
I'm using this for converting object keys to plus-case. Most slugify libs are too heavy for this, so I made this as a fast and light alternative.
Install with npm:
``sh`
$ npm install plusify --save
`js
var plusify = require('plusify');
plusify('fooBar');
//=> 'foo+bar'
plusify('fooBarBaz');
//=> 'foo+bar+baz'
plusify('foo bar');
//=> 'foo+bar'
plusify('foo barBaz');
//=> 'foo+bar+baz'
plusify('foo barBaz quux');
//=> 'foo+bar+baz+quux'
`
Some other awesome string libs:
* dashify: Convert a string to dash-case. | homepage
* pascalcase: Convert a string to pascal-case. | homepage
* romanize: Convert arabic numbers to roman numerals (useful for books, outlines, documentation, slide decks, etc) | homepage
* word-wrap: Wrap words to a specified length. | homepage
* wordcount: Count the words in a string. Support for english, CJK and Cyrillic. | homepage
Install dev dependencies:
`sh``
$ npm install -d && npm test
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
If this project doesn't do what you need, please let us know!
Jon Schlinkert
* github/jonschlinkert
* twitter/jonschlinkert
Sang Nguyen
Copyright © 2015-2016, Jon Schlinkert.
Released under the MIT license.
*
_This file was generated by verb, v0.9.0, on March 11, 2017._