![ModernDash Logo](https://github.com/Maggi64/moderndash/raw/HEAD/website/src/assets/moderndashLogo.svg)
A Typescript-First utility library inspired by Lodash.
Optimized for modern browsers & developer experience.
✅ ESM
✅ Tree-shakable
✅ Typescript Strict Mode (no any)
✅ Zero dependencies
✅ Hoverable Docs
✅ TS Decorators
✅ ESNext
📓 Introduction
ModernDash is a modern and lightweight alternative to utility libraries like Lodash. It provides important functions while encouraging use of native JS where possible.
ModernDash ignores trivial functions and focuses of the functions you actually need.
Lodash.isArray(arr)
Lodash.compact(arr)
Array.isArray(arr)
arr.filter(Boolean)
💾 Installation
npm install moderndash
Why is X lodash function not included?
Please check You-Dont-Need-Lodash for native replacements.
If you still think a function is missing open an issue.