UNPKG

rambdax

Version:

Extended version of Rambda - a lightweight, faster alternative to Ramda

12 lines (9 loc) 248 B
import { curry } from './curry.js' export function insertFn(indexToInsert, valueToInsert, array) { return [ ...array.slice(0, indexToInsert), valueToInsert, ...array.slice(indexToInsert), ] } export const insert = curry(insertFn)