isFalsy()Basically used to determine if something is falsy or is an empty collection of sorts.
This function is valid in v2.1.0 to v2.24.3. This function has been downloaded 66 times.false
isFalsy() will check if a value is falsy or is an empty collection. If this argument is true-ish isFalsy() will not check value to see if it is an empty collection but will only return the equivalent of !value.false if value is an empty array, arguments list, node list, element collection, or string. Returns false if value is an object of type Object which has no properties of its own defined. Returns false if value is falsy. In all other cases, true is returned.This function directly requires the following functions which are included automatically:
isArrayLike()isEmpty()