UNPKG

@wezom/toolkit-array

Version:
10 lines (9 loc) 192 B
/** * Clones an array and puts only unique elements there * @immutable */ export default function <T = any>( array: T[], items: T[], predicate?: (clone: T[], item: T) => boolean ): T[];