Fixed build helper after code conversion mishap

This commit is contained in:
Steele-Idem 2014-02-03 15:10:52 -07:00
parent f164da5619
commit 084a48378f

View File

@ -18,11 +18,9 @@ function _getHandler(name) {
function notEmpty(o) {
if (Array.isArray(o) === true) {
module.exports = o.length !== 0;
return;
return o.length !== 0;
}
module.exports = o;
return;
return o;
}
module.exports = {