import { clone } from "../lib"; import { ArrayElement } from "../types"; export default ( array: ArrayType, value: ArrayElement, index: number ) => { const newArray: ArrayType = clone(array); newArray[index] = value; return newArray; };