Skip to content
此页的目录大纲

开始

简单说说,怎么用这个东西

安装

在项目中,任选一种命令行安装方式进行安装,推荐 yarnpnpm

TIP

Node.js 版本 >= 16

sh
$ npm install -D js-fast-way
sh
$ pnpm add -D js-fast-way
sh
$ yarn add -D js-fast-way

使用

在需要的地方,引入所需的方法函数名即可。

js
import { isObjNull } from "js-fast-way"

let obj = {}
console.log(isObjNull(obj))

Released under the MIT License.