Skip to content

drop

Drops the first n elements.

ts
import { drop } from '@vielzeug/toolkit';

drop([1, 2, 3, 4], 2); // [3, 4]