checker-javascript
v0.0.1
Published
this package hepls u to check if array or string or object is empty
Downloads
26
Readme
how to use it
=================example====================================== suppose that us have a string
var string = "" var array = [] var object = {}
const {isEmpty} = require("checker-javascript")
isisEmpty(string) //return true
isisEmpty(object) //return true
isisEmpty(array) //return true