Skip to main content
Module

x/rambda/slice.js

Faster and smaller alternative to Ramda
Go to Latest
File
import { curry } from './curry'
function sliceFn( from, to, list){ return list.slice(from, to)}
export const slice = curry(sliceFn)