Files
feedstr.live/node_modules/underscore/modules/compact.js
T
2023-11-25 18:12:47 -05:00

7 lines
155 B
JavaScript

import filter from './filter.js';
// Trim out all falsy values from an array.
export default function compact(array) {
return filter(array, Boolean);
}