Appearance
Array.compact(array)
Removes all nullable values from array.
array
import { Array } from "@monstermann/array"; Array.compact([1, null, undefined]); // [1]
import { Array } from "@monstermann/array"; pipe([1, null, undefined], Array.compact()); // [1]