underscore.string.cli
v1.1.5
Published
Use underscore.string on your commandline
Downloads
31
Readme
underscore.string.cli
Use underscore.string on your commandline
Installation
npm install underscore.string.cli -g
Usage
You can use all methods from underscore.string.
$ string <command> <string> [-- options]
$ string camelize hello world
# js => s.camelize("hello world");
# => helloWorld
$ string camelize -hello-world -- true
# js => s.camelize("-hello-world", true);
# => helloWorld
$ string join \| -- foo bar moo boo
# js => s.join("|", "foo", "bar", "moo", "boo");
# => foo|bar|moo|boo
$ string levenshtein kitten -- kittah
# js => s.levenshtein("kitten", "kittah");
# => 2
You can pipe data through different methods
$ echo "foo bar" | string clean | string capitalize
# js => s("foo bar").clean().capitalize().value()
# => Foo bar