rattail
v1.0.8
Published
A utilities library for front-end developers, lightweight and ts-friendly
Downloads
1,753
Maintainers
Readme
特性
- 🛠️ 提供日常开发中经常使用的实用工具
- 🛠️ 工具实现非常轻量
- 🛠️ 使用 ts 编写,提供完善的类型支持
- 💪 确保 99% 以上单元测试覆盖率,提供稳定性保证
安装
# npm
npm i rattail -S
# yarn
yarn add rattail
# pnpm
pnpm add rattail
使用
import { isString } from 'rattail'
isString('rattail') // return true
isString(123) // return false