2025.lyb
v1.0.1
Published
A useful package for string manipulation
Readme
String Utils
A useful package for string manipulation.
Installation
To install this package, run the following command in your terminal:
npm install string-utilsconst { capitalize } = require('string-utils');
console.log(capitalize('hello')); // Output: Hello
const { reverse } = require('string-utils');
console.log(reverse('hello')); // Output: olleh
