1.0.3 • Published 2 years ago

@bobo-org/utils v1.0.3

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

@bobo-org/utils

js 日常公用常用的工具函数

Install

Using npm:

npm install --save-dev @bobo-org/utils

or using yarn:

yarn add @bobo-org/utils --dev

使用

# esm
import {compact} from '@bobo-org/utils'
const a = compact([1, null, undefined, NaN, '', 'end'])
console.log(a) //[1,'end']
# cjs
const {compact } = require('@bobo-org/utils')
const a = compact([1,null,undefined,NaN,'','end'])
console.log(a) //[1,'end']