// @flow import {curry} from "flow-static-land/lib/Fun"; /** * Returns a new Array with the result of having inserted the given elements at * the specified index. */ const insert = ( index: number, elements: Array, array: Array ): Array => [ ...array.slice(0, index), ...elements, ...array.slice(index + 1) ]; export default curry(insert);