Latest
function default
import { default } from "https://dotland.deno.dev/x/lodash_es@v0.0.2/src/compact.js";

Creates an array with all falsey values removed. The values false, null, 0, "", undefined, and NaN are falsey.

Examples

_.compact([0, 1, false, 2, '', 3]); // => [1, 2, 3]

Parameters

array

The array to compact.