basekit-core
v0.1.5
Published
Core utility functions – zero dependency
Downloads
326
Readme
@basekit/core ⚡✨
🚀 What is this?
A tiny core utility library for things you use every day —
written once, written right, and reused everywhere.
No bloat. No surprises. Just clean helpers.
💡 Why does it exist?
Because:
- importing 5 helpers shouldn’t install 20 packages
- utilities should be predictable, not magical
- Unicode & locale support should be default, not optional
📦 Install
npm i @basekit/coreimport { debounce, memoize, slugify } from "@basekit/core"🧰 What’s inside?
⏱️ Timing
debounce,throttle
🧠 Caching
memoize,memoizeAsync(LRU‑ready)
🔤 Strings
- Unicode‑safe, locale‑aware helpers
slugify,capitalize,truncate,extractInitials
🧩 Functional
pipe,compose
🪶 Tiny helpers
once,delay,noop,identity
🧠 Philosophy
Small primitives beat big abstractions.
Source code is the documentation.
If you know JavaScript, you already know how to use this.
📄 License
MIT
