UNPKG

@wezom/toolkit-array

Version:
10 lines (9 loc) 173 B
/** * Clones an array and removes items * @immutable */ export default function <T = any>( array: T[], items: T[], predicate?: (clone: T[], item: T) => number ): T[];