handy-utils-ts
v1.0.1
Published
A lightweight utility library with handy string, number and array helpers.
Maintainers
Readme
A lightweight and handy TypeScript utility library for working with strings, numbers, arrays, and other common operations.
Supports both modular usage and global prototype extension, giving you flexibility in how you integrate it into your project.
📦 Installation
# npm
npm install handy-utils-ts
# pnpm
pnpm install handy-utils-ts
# yarn
yarn add handy-utils-ts📚 Table of Contents
🔧 Usage
Standard (Modular) Usage
You can import utilities individually for better tree-shaking and clarity:
import { capitalize } from "handy-utils-ts/str";
import { clamp } from "handy-utils-ts/num";
import { unique } from "handy-utils-ts/arr";
console.log(capitalize("hello world")); // Hello world
console.log(clamp(10, 0, 5)); // 5
console.log(unique([1, 2, 2, 3])); // [1, 2, 3]Global Usage via tsconfig
If you prefer using utilities directly on native types (like "hello".$capitalize()), you can enable global augmentation.
Step 1: Update tsconfig.json
{
"compilerOptions": {
"types": ["handy-utils-ts/global"]
}
}Step 2: Use Globally Augmented Methods
const name = "john doe";
console.log(name.$capitalize()); // John doe
const nums = [1, 2, 2, 3];
console.log(nums.$unique()); // [1, 2, 3]
const score = 110;
console.log(score.$clamp(0, 100)); // 100⚠️ Prototype methods are prefixed with
$to avoid conflicts with native methods.
🧰 Features
String Utilities
capitalize(str)camelCase(str)kebabCase(str)snakeCase(str)truncate(str, length)Global equivalents:
"example".$capitalize()"some text".$camelCase()
Number Utilities
clamp(num, min, max)isEven(num)isOdd(num)random(min, max)Global equivalents:
42.$isEven()100.$clamp(0, 50)
Array Utilities
unique(arr)chunk(arr, size)flatten(arr)compact(arr)Global equivalents:
[1, 2, 2].$unique()[1, [2, 3]].$flatten()
Miscellaneous
sleep(ms)deepClone(obj)isEmpty(value)debounce(fn, delay)throttle(fn, delay)
⚙️ Configuration for Global Usage
Global augmentation is opt-in and non-invasive, designed for ergonomics without affecting native behavior.
TypeScript Compatibility
Global methods are added through module augmentation and are fully typed. You get autocomplete and type safety for:
string.$capitalize()number.$clamp(...)array.$unique()
Example tsconfig snippet
{
"compilerOptions": {
"types": ["handy-utils-ts/global"],
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "Node"
}
}🧪 Testing
This library is tested with modern TypeScript and includes comprehensive unit tests.
You can run tests using:
npm test🛠️ Contributing
Contributions are welcome! Whether it's a bug fix, new utility, or improvement. All PRs are appreciated.
Steps to Contribute
Fork the repository
Clone your fork locally:
git clone https://github.com/YOUR_USERNAME/handy-utils-ts.gitCreate a new branch for your feature or fix:
git checkout -b feature/my-awesome-featureWrite tests for any new functions
Commit your changes:
git commit -m "Add: my-awesome-feature"Push to your fork:
git push origin feature/my-awesome-featureOpen a Pull Request on the main repo
Guidelines
- Keep functions atomic and reusable
- Use TypeScript and type definitions
- Add unit tests for every new utility
- Maintain naming conventions (
$prefix for globals)
Thank you for helping make this project better! 🚀
📄 License
MIT © 2025 [Olushola (GeekyGeeky)]
