Skip to content

stanjdev/TS-String-Library

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TS-JS String Manipulation Library

npm npm bundle size

A simple JavaScript library to manipulate strings.

Installation

Use the package manager npm to install.

npm i string-lib-1

Link to npm library

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

License

MIT

Releases

No releases published

Packages

No packages published