fn: (item) => {
            const type = "|" + item.type.slice(item.type.lastIndexOf("/") + 1) + "|";
            return "|jpg|jpeg|png|".indexOf(type) !== -1;
        }