UNPKG

typescript-array-utils

Version:
7 lines (6 loc) 214 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function replace(a, index, element) { return [].concat(a.slice(0, index), element, a.slice(index + 1)); } exports.replace = replace;