UNPKG

marko

Version:

UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.

12 lines (10 loc) 191 B
module.exports = function (o) { if (o == null) { return false; } else if (Array.isArray(o)) { return !!o.length; } else if (o === "") { return false; } return true; };