| Current Path : /var/www/html/reddsis/node_modules/underscore/amd/ |
| Current File : /var/www/html/reddsis/node_modules/underscore/amd/compact.js |
define(['./filter'], function (filter) {
// Trim out all falsy values from an array.
function compact(array) {
return filter(array, Boolean);
}
return compact;
});