简体中文 | English
A collection of modern, lightweight utility packages — built with TypeScript, managed as a pnpm monorepo.
| Package | Version | Description |
|---|---|---|
| @fekt/tskit | Common JavaScript utility library written in TypeScript |
pnpm add @fekt/tskitimport { desensitize, moneyFormat, debounce } from '@fekt/tskit'
desensitize('18688888888') // => '186****8888'
moneyFormat(3002.345, 2) // => '3,002.35'See each package's README for full API documentation.
# Install dependencies
pnpm install
# Build all packages
pnpm -r run build
# Run all tests
pnpm -r run test
# Type check
pnpm -r run typecheck- Fork the repository
- Create your feature branch (
git checkout -b feat/amazing-feature) - Commit your changes following Conventional Commits
- Push to the branch (
git push origin feat/amazing-feature) - Open a Pull Request