reverse-string-117
v1.0.0
Published
"A utility library for string reversal operations by SP23-BSE-117"
Readme
Reverse String
A simple utility library for reversing strings by SP23-BSE-117.
Installation
Install the package using npm:
npm install reverse-string
const { reverseString } = require('reverse-string');
// Example: Reverse a string
console.log(reverseString('hello')); // Output: 'olleh'