1.0.0 • Published 2 years ago
@monyluak/tiny v1.0.0
tiny 
A small JavaScript library that removes all whitespace characters from a string.
Installation
You can install the tiny library using npm:
npm install @monyluak/tiny
Usage
To use the tiny function, first import it into your JavaScript file:
const tiny = require('@monyluak/tiny');
Then, call the tiny function with a string as its argument:
const input = ' Hello, world! ';
const output = tiny(input);
console.log(output); // "Hello,world!"
Contributing
Contributions are welcome! To contribute to the tiny library, follow these steps:
- Fork the repository
- Create a new branch (git checkout -b my-new-feature)
- Make changes and commit them (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new pull request
License
The tiny library is licensed under the MIT License. See the LICENSE file for details