UNPKG

@walts81/linq-ts

Version:

Typescript/Javascript LINQ implementation library

9 lines (8 loc) 224 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.union = void 0; Array.prototype.union = union; function union(arrayOrItem) { return this.concat(arrayOrItem); } exports.union = union;