@avalabs/quick-test-package
v1.0.6
Published
A simple test package for quick testing
Readme
Quick Test Package
A simple npm package for testing purposes with basic string utilities.
Installation
npm installUsage
const { capitalize, reverse } = require('quick-test-package');
// Capitalize each word
console.log(capitalize('hello world')); // "Hello World"
// Reverse a string
console.log(reverse('hello')); // "olleh"Testing
npm testFunctions
capitalize(str)- Capitalizes the first letter of each wordreverse(str)- Reverses a string
License
MIT
