Returns a collector that returns true if the AsyncIterable has 0 entry.
Type of items in the source.
Collector that returns true if the AsyncIterable has 0 entry.
const result = isEmptyAsync()([]);console.log(result); // true Copy
const result = isEmptyAsync()([]);console.log(result); // true
Returns a collector that returns true if the AsyncIterable has 0 entry.