9 lines
170 B
JavaScript
Raw Normal View History

2025-04-23 09:34:08 +08:00
var filter = require('./filter.js');
// Trim out all falsy values from an array.
function compact(array) {
return filter(array, Boolean);
}
module.exports = compact;