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.
npm install everyutilimport { 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')); // trueIf you find everyutil helpful, please ⭐ star the GitHub repository to show your support!
MIT © Ilker Ozturk