string-lib-1
v1.0.6
Published
A simple JavaScript library to manipulate strings
Downloads
5
Readme
TS-JS String Manipulation Library
A simple JavaScript library to manipulate strings.
Installation
Use the package manager npm to install.
npm i string-lib-1
Usage
const stringLib = require("string-lib-1");
stringLib.capitalize('hello world');
// returns "Hello world"
stringLib.allCaps('foo bar');
// returns "FOO BAR"
stringLib.capitalizeWords('hello world');
// returns "Hello World"
stringLib.removeExtraSpaces(" Hello world! buttons ");
// returns "hello world! buttons"
stringLib.kebobCase(" Hello world! buttons ");
// returns "hello-world-buttons"
stringLib.snakeCase(" Hello world! buttons ");
// returns "hello_world_buttons"
stringLib.camelCase(" Hello world! buttons ");
// returns "helloWorldButtons"
stringLib.shift("Hello world!");
// returns "ello world!H"
stringLib.makeHashTag("Amazing bongo drums for sale", 3);
// returns an array of the n longest words of a given string, with a hashtag '#' prepended to them
// returns ['#amazing', '#bongo', '#drums']
stringLib.isEmpty(` `);
// returns true
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
Testing
To run tests:
npm test
To check code test coverage:
npx jest --coverage