Core & Utilities
Data & State
Frontend & Logic
Architecture & Security
Appearance
Drops the first n elements.
import { drop } from '@vielzeug/toolkit'; drop([1, 2, 3, 4], 2); // [3, 4]