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
npm install everyutil
Usage
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
Support the Project
If you find everyutil
helpful, please ⭐ star the GitHub repository to show your support!
License
MIT © Ilker Ozturk