Determines if the given thing is not empty.
this is the inverse of isEmpty.
isEmpty
isNotEmpty([]); // falseisNotEmpty([0]); // trueisNotEmpty(""); // falseisNotEmpty(" "); // trueisNotEmpty(new Set()); // falseisNotEmpty({}); // falseisNotEmpty(new Map()); // false Copy
isNotEmpty([]); // falseisNotEmpty([0]); // trueisNotEmpty(""); // falseisNotEmpty(" "); // trueisNotEmpty(new Set()); // falseisNotEmpty({}); // falseisNotEmpty(new Map()); // false
Determines if the given thing is not empty.