We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Check if lists is empty.
Similar: size, isEmpty.
function isEmpty(x) // x: lists
const xlists = require('extra-lists'); var x = [['a', 'b', 'c'], [1, 2, 3]]; xlists.isEmpty(x); // → false var x = [[], []]; xlists.isEmpty(x); // → true