"use strict"; module.exports = function removeNullishItems(array) { return array.filter((item) => item != null); };