Skip to main content
Module

x/rambda/source/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)