UNPKG

@walts81/linq-ts

Version:

Typescript/Javascript LINQ implementation library

9 lines (8 loc) 270 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.removeAt = void 0; Array.prototype.removeAt = removeAt; function removeAt(index, mutateArray = false) { return this.remove(this[index], mutateArray); } exports.removeAt = removeAt;