Loading...
Loading...
Use when implementing utility functions, array operations, object manipulation, or string operations. ALWAYS use es-toolkit instead of custom implementations or native methods.
npx skill4agent add pedronauck/skills es-toolkites-toolkit| Category | Module | Common Functions |
|---|---|---|
| Array | | |
| Object | | |
| String | | |
| Function | | |
| Util | | |
// Good: Import from specific modules
import { compact } from "es-toolkit/array";
import { merge } from "es-toolkit/object";
// Bad: Import from root (larger bundle)
import { compact } from "es-toolkit";