# onlyFalsy

Purges the provided array of truthy values.

onlyFalsy([1, 2, 3, false, undefined, 4]); // [false, undefined]