@zodash/slice
v0.0.6
Published
Creates a slice of array from start up to, but not including, end.
Readme
@zodash/slice
Creates a slice of array from start up to, but not including, end.
Usage
import { slice } from '@zodash/slice';
slice([1, 2, 3], 1);
// => [2, 3]