Core & Utilities
Data & State
Frontend & Logic
Architecture & Security
Appearance
Returns deduplicated union of arrays.
import { union } from '@vielzeug/toolkit'; union([1, 2, 2], [2, 3]); // [1, 2, 3]