union.js 370 B

123456789101112
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. var uniq_1 = require("./uniq");
  4. var union = function () {
  5. var sources = [];
  6. for (var _i = 0; _i < arguments.length; _i++) {
  7. sources[_i] = arguments[_i];
  8. }
  9. return uniq_1.default([].concat.apply([], sources));
  10. };
  11. exports.default = union;
  12. //# sourceMappingURL=union.js.map