deno.land / x / rambda@v9.1.1 / source / insert.js

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
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)
rambda

Version Info

Tagged at
2 months ago