@chansee97/utils
v0.2.2
Published
a collection of common JavaScript / TypeScript utils by @chansee97
Downloads
1
Readme
@chansee97/utils
个人的工具函数集合,有点乱,但是贵在适合
安装
npm i @chansee97/utils
示例
import { isEmpty } from '@chansee97/utils'
isEmpty('') // true
isEmpty(null) // true
isEmpty(undefined) // true
isEmpty(0) // false
isEmpty([]) // true
isEmpty({}) // true
isEmpty('123') // false
isEmpty(' ') // false
isEmpty(123) // false