UNPKG

rambdax

Version:

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

8 lines (5 loc) 216 B
import { curry } from './curry.js'; export function insertAllFn(index, listToInsert, list) { return [...list.slice(0, index), ...listToInsert, ...list.slice(index)]; } export const insertAll = curry(insertAllFn);