unionWith (Functional Programming) es-toolkit
Creates a function that combines arrays using a custom equality function. Use it with pipe.
Info
Usage
unionWith keeps the first value from the combined arrays for which areItemsEqual does not match an already kept value.
Parameters
secondArrayreadonly T[]required
The array to combine after the piped array.
areItemsEqual(item: T, other: T) => booleanrequired
The function that decides whether two values are equal.
Returns
A function that maps a readonly T[] to a union by custom equality.
Source: es-toolkit
Re-exported verbatim from es-toolkit. Implementation, edge cases, and performance behavior are owned upstream. This page mirrors the documentation at the pinned version; the linked source is authoritative.