文件名称:is-present:检查是否存在值(非空白)
文件大小:3KB
文件格式:ZIP
更新时间:2024-05-25 17:40:24
JavaScript
存在 检查值是否为空。 安装 npm i --save is-present 用法 var isPresent = require ( 'is-present' ) ; isPresent ( [ ] ) ; // => false isPresent ( { } ) ; // => false isPresent ( 0 ) ; // => false isPresent ( function ( ) { } ) ; // => false isPresent ( null ) ; // => false isPresent ( undefined ) ; // => false isPresent ( '' ) ; // => false
【文件预览】:
is-present-master
----.travis.yml(45B)
----LICENSE(1KB)
----test()
--------test.js(2KB)
----README.md(1KB)
----.gitignore(13B)
----index.js(112B)
----package.json(802B)