@yxsifdev/utils
v0.2.0
Published
Lightweight collection of reusable utilities for JavaScript and TypeScript.
Downloads
11
Maintainers
Readme
@yxsifdev/utils
A lightweight collection of modern utilities for JavaScript and TypeScript.
Includes functions for working with strings, numbers, dates, and common everyday operations.
Designed to be fast, typed, modular, and dependency-free.
🔥 Features
- Common reusable functions needed in any project.
- Fully written in TypeScript with included type definitions.
- Small, clean, and easy-to-maintain API.
- Compatible with ESM and CommonJS.
- Zero external dependencies.
- Modular design: import only what you need.
📖 Installation
# Using npm
npm install @yxsifdev/utils
# Using pnpm
pnpm add @yxsifdev/utils
# Using yarn
yarn add @yxsifdev/utils❓ Usage
import { slugify, capitalize } from "@yxsifdev/utils";
console.log(slugify("Hello World"));
// "hello-world"
console.log(capitalize("yxSifDev"));
// "Yxsifdev"👑 Contributors
⚠️ This library is currently under active development.
The API is not final and functions will be added progressively.
