Data Processing
Find the insertion index in a sorted array using lodash _.sortedIndex
sorted-indexData Processing
Remove duplicates from a sorted array using lodash _.sortedUniq
sorted-uniqueData Processing
Remove duplicates from a sorted array using lodash _.sortedUniqBy
sorted-unique-byData Processing
Return all but the first array item using lodash _.tail
tail-itemsData Processing
Take the first N items using lodash _.take
take-itemsData Processing
Take the last N items using lodash _.takeRight
take-right-itemsData Processing
Take items while a predicate matches using lodash _.takeWhile
take-whileData Processing
Reverse an array using lodash _.reverse
reverse-arrayText Processing
Statistics and frequency analysis of text patterns (numbers, emails, URLs, etc.)
text-pattern-statsText Processing
Convert between CamelCase, snake_case, kebab-case, PascalCase, and other naming conventions
advanced-case-converterSecurity
Detect common SQL injection attack patterns in input strings
sql-injection-detectorText Processing
Detect and remove duplicate lines with advanced options for mode, case sensitivity, and trimming
advanced-duplicate-line-remover