An open API service indexing awesome lists of open source software.

https://github.com/renzp94/utils

一款零依赖、实用的Javascript/Typescript工具库
https://github.com/renzp94/utils

javascript utils

Last synced: about 1 month ago
JSON representation

一款零依赖、实用的Javascript/Typescript工具库

Awesome Lists containing this project

README

        

@renzp/utils logo







Bundle Size

Downloads
Version
License

# @renzp/utils

一款零依赖、实用的Javascript/Typescript工具库

## 安装

```sh
npm install @renzp/utils
```

## 使用

```ts
import { isNumber } from '@renzp/utils'

const v: unknown = Math.PI
if (isNumber(v)) {
console.log(v.toFixed(2)) // 3.14
}
```
更多使用方法可以查看[文档](https://renzp-utils.deno.dev/)