mirror of
https://github.com/stCarolas/setup-maven.git
synced 2025-01-06 07:18:01 +00:00
9 lines
170 B
JavaScript
9 lines
170 B
JavaScript
|
var filter = require('./filter.js');
|
||
|
|
||
|
// Trim out all falsy values from an array.
|
||
|
function compact(array) {
|
||
|
return filter(array, Boolean);
|
||
|
}
|
||
|
|
||
|
module.exports = compact;
|