FLUJOS/VISUALIZACION/node_modules/underscore/modules/compact.js
2025-11-07 00:06:12 +01:00

6 lines
155 B
JavaScript
Executable file

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