1.0.6 • Published 2 years ago

string-lib-1 v1.0.6

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

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

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago