@demoniks/string-utilities
v1.0.0
Published
A simple NPM package for string manipulation
Downloads
1
Readme
@demoniks/string-utilities
This is a simple NPM package for string manipulation. This package includes a single function to convert a string to uppercase.
Installation
You can install this package using npm:
npm install @demoniks/string-utilities
Usage
Here is an example of how to use this package:
const { toUpperCase } = require('@demoniks/string-utilities');
const originalString = 'Hello, world!';
const uppercasedString = toUpperCase(originalString);
console.log(uppercasedString); // Output: HELLO, WORLD!
License
This project is licensed under the MIT License.