Creates a slice of array with n elements dropped from the beginning.
array
n
Example
use lodash_rust::drop; fn main() { let res = drop::new([1, 2, 3].to_vec(), Some(5)); println!("{res}") // [] }