CampfireAuth/node_modules/underscore/amd/compact.js
2025-03-19 21:59:49 +05:00

11 lines
179 B
JavaScript

define(['./filter'], function (filter) {
// Trim out all falsy values from an array.
function compact(array) {
return filter(array, Boolean);
}
return compact;
});