Appearance
Array.drop(array, amount)
Removes the first amount elements from array.
amount
array
import { Array } from "@monstermann/array"; Array.drop([1, 2, 3, 4, 5], 2); // [3, 4, 5]
import { Array } from "@monstermann/array"; pipe([1, 2, 3, 4, 5], Array.drop(2)); // [3, 4, 5]