setup-maven-cached/node_modules/underscore/amd/compact.js

11 lines
179 B
JavaScript
Raw Permalink Normal View History

2022-06-28 16:39:30 +08:00
define(['./filter'], function (filter) {
// Trim out all falsy values from an array.
function compact(array) {
return filter(array, Boolean);
}
return compact;
});