UNPKG

250 BJavaScriptView Raw
1module.exports = function notEmpty(o) {
2 require("complain")("notEmpty is deprecated.");
3
4 if (o == null) {
5 return false;
6 } else if (Array.isArray(o)) {
7 return !!o.length;
8 } else if (o === "") {
9 return false;
10 }
11
12 return true;
13};