文件名称:khali:只需检查您的数组,对象,嵌套的东西,字符串,数字等是否为空
文件大小:9KB
文件格式:ZIP
更新时间:2024-04-21 10:07:41
javascript typescript string object array
Khali(Khāli;意思是空的) 只需检查您的数组,对象,嵌套的东西,字符串,数字等是否为空。 安装 与npm npm install khali 用纱yarn add khali 用法示例 import isKhali from "khali" ; // Regular stuff isKhali ( [ ] ) ; // true isKhali ( { } ) ; // true isKhali ( "" ) ; // true isKhali ( 0 ) ; // true const arr = [ "Dhaka" , "Rajshahi" , [ 1 , 2 , 3 ] ] ; const obj = { city : "Dhaka" , nested : { khali : null } } ; // It works with array
【文件预览】:
khali-master
----package.json(609B)
----LICENSE(18KB)
----package-lock.json(397B)
----src()
--------index.ts(231B)
----tsconfig.json(283B)
----.gitignore(19B)
----README.md(933B)