UNPKG

typescript-array-utils

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