fx-flow v0.7.0 / pipe/strict / isEmpty
Function: isEmpty()
isEmpty<
A
>(args
):boolean
Check whether args
is empty.
Type parameters
• A
Parameters
• args: A
Returns
boolean
Example
typescript
isEmpty({}) // true
isEmpty([]) // true
isEmpty(null) // true
isEmpty(undefined) // true
isEmpty("") // true
isEmpty(0) // false
isEmpty(false) // false
isEmpty(function(){}) // false
isEmpty(Symbol("")) // false
isEmpty(new Date()) // false