npm install your-is-empty``bash`
npm i your-is-empty
待检查值。任意类型
- return <[boolean]> 是否为空判断是否为空
`js
import isEmpty from 'your-is-empty'isEmpty() // true
isEmpty(undefined) // true
isEmpty(null) // true
isEmpty('') // true
isEmpty(' ') // true
isEmpty({}) // true
isEmpty([]) // true
isEmpty(0) // false
``[boolean]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Boolean_type "Boolean"