One Dionys (String Utils) - Provides useful functions for manipulating strings and can be used in typescript/javascript.
npm install onedionys-string-utilsProvides useful functions for manipulating strings and can be used in typescript/javascript. 💖
Web Browser - Can be used as an emulator to build applications. Example [Chrome, Firefox, Safari & Opera].
Internet - Because many use CDN and to make it easier to find solutions to all problems.
bash
npm install string-utils
`
#### Usage
`typescript
import { capitalizeFirstLetter, reverseString } from 'string-utils';
console.log(capitalizeFirstLetter('hello')); // Output: Hello
console.log(reverseString('hello')); // Output: olleh
`
#### Explanation
* capitalizeFirstLetter(str: string): Capitalizes the first letter of a string.
* reverseString(str: string):`: Reverses a string.