
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
A modern, efficient, and modular JavaScript utility library designed to enhance developer productivity.
English | 简体中文
funtool is a modern, modular JavaScript utility library designed to boost developer productivity. It offers well-organized modules, full TypeScript support, and an automated documentation system, making it suitable for multilingual projects, web applications, Node.js environments, and more. This project is a complete refactor of an older utility library, with versioning reset. Written in TypeScript, it features a cleaner structure, enhanced flexibility, and a more robust documentation system. funtool provides type-safe, reusable utility functions that significantly improve development efficiency for both JavaScript and TypeScript projects.
📚 Documentation
👉 View Full Docs »
array, object, string, or type modules—to keep bundle size minimal.npm install funtool
# or
pnpm add funtool
import { isString } from 'funtool/type';
import { isNumber } from 'funtool';
console.log(isNumber(1)); // ✅ true
console.log(isString('hello')); // ✅ true
import { regex } from 'funtool';
const mobile = "13800138000";
console.log(
regex.checker(mobile).use('mobile').isValid()
); // ✅ true
src/
├── array/ # Array utilities
├── common/ # Common/shared utilities
├── function/ # Function-related utilities
├── object/ # Object utilities
├── regex/ # Regular expression utilities
├── string/ # String utilities
├── type/ # Type checking utilities
├── version.ts # Version information
└── index.ts # Main entry point
npm run dev
npm run build
npm run test
npm run generate:module
pnpm run release
You can explore more advanced usage, module API reference, and examples in the official documentation: 👉 Docs
Copyright (c) 2019-present xiaoqiujun
FAQs
A modern, efficient, and modular JavaScript utility library designed to enhance developer productivity.
The npm package funtool receives a total of 7 weekly downloads. As such, funtool popularity was classified as not popular.
We found that funtool demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.