UNPKG

rambda

Version:

Lightweight and faster alternative to Ramda with included TS definitions

10 lines (7 loc) 143 B
import { curry } from './curry.js' function sliceFn( from, to, list ){ return list.slice(from, to) } export const slice = curry(sliceFn)