There was an error while loading. Please reload this page.
Removes null, undefined, or empty string ('') values from an array.
import { removeArrayEmpty } from 'rattail' removeArrayEmpty([1, null, undefined, '', 3]) // return [1, 3]