UNPKG

typescript-array-utils

Version:
4 lines (3 loc) 133 B
export function insert<T>(a: T[], index: number, element: T): T[] { return [].concat(a.slice(0, index), element, a.slice(index)); }