everyutil
Version:
A comprehensive library of lightweight, reusable utility functions for JavaScript and TypeScript, designed to streamline common programming tasks such as string manipulation, array processing, date handling, and more.
53 lines (38 loc) • 2.59 kB
Markdown
# everyutil
Shortly, A collection of utility functions for everyday programming tasks.
Actually; A comprehensive library of lightweight, reusable utility functions for JavaScript and TypeScript, designed to streamline common programming tasks such as string manipulation, array processing, date handling, and more.
## Installation
```sh
npm install everyutil
```
## Usage
```typescript
import { stringSimilarity, extractKeywords, isPalindrome } from 'everyutil';
console.log(stringSimilarity('kitten', 'sitting')); // 0.714...
console.log(extractKeywords('The cat sat on the mat.', ['the', 'on'])); // ['cat', 'sat', 'mat']
console.log(isPalindrome('A man a plan a canal Panama')); // true
```
## Download Stats

## Documentation
- [GitHub Repository](https://github.com/dailker/everyutil-js)
- [Report Issues](https://github.com/dailker/everyutil-js/issues)
- [NPM Package](https://www.npmjs.com/package/everyutil)
- [API Documentation](https://github.com/dailker/everyutil-js/tree/main/docs)
- [Array Utilities](https://github.com/dailker/everyutil-js/blob/main/docs/ARRAY_UTILS.md)
- [Color Utilities](https://github.com/dailker/everyutil-js/blob/main/docs/COLOR_UTILS.md)
- [Compression Utilities](https://github.com/dailker/everyutil-js/blob/main/docs/COMPRESSION_UTILS.md)
- [Date Utilities](https://github.com/dailker/everyutil-js/blob/main/docs/DATE_UTILS.md)
- [File System Utilities](https://github.com/dailker/everyutil-js/blob/main/docs/FS_UTILS.md)
- [Logic Utilities](https://github.com/dailker/everyutil-js/blob/main/docs/LOGIC_UTILS.md)
- [Network Utilities](https://github.com/dailker/everyutil-js/blob/main/docs/NETWORK_UTILS.md)
- [Number Utilities](https://github.com/dailker/everyutil-js/blob/main/docs/NUMBER_UTILS.md)
- [Object Utilities](https://github.com/dailker/everyutil-js/blob/main/docs/OBJECT_UTILS.md)
- [Security Utilities](https://github.com/dailker/everyutil-js/blob/main/docs/SECURITY_UTILS.md)
- [Statistic Utilities](https://github.com/dailker/everyutil-js/blob/main/docs/STATISTIC_UTILS.md)
- [String Utilities](https://github.com/dailker/everyutil-js/blob/main/docs/STRING_UTILS.md)
- [Type Utilities](https://github.com/dailker/everyutil-js/blob/main/docs/TYPES_UTILS.md)
## Support the Project
If you find `everyutil` helpful, please ⭐ **star** the [GitHub repository](https://github.com/dailker/everyutil-js) to show your support!
## License
MIT © [Ilker Ozturk](https://github.com/dailker)