UNPKG

140 BJavaScriptView Raw
1import { curry } from './curry'
2
3function sliceFn(
4 from, to, list
5){
6 return list.slice(from, to)
7}
8
9export const slice = curry(sliceFn)