UNPKG

underscore-es

Version:

javaScript's functional programming helper library for ES6 and beyond.

9 lines (7 loc) 219 B
// `_compact` : an array's function // --------------------------------- import _filter from './filter'; // Trim out all falsy values from an array. export default function (array) { return _filter(array, Boolean); }