{"version":3,"sources":["add/iterable-operators/union.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,0BAA0B,CAAC;AACrD,OAAO,EAAE,KAAK,EAAE,MAAM,gCAAgC,CAAC;AAEvD;;GAEG;AACH,MAAM,UAAU,UAAU,CAExB,KAAkB,EAClB,QAAkC;IAElC,OAAO,KAAK,CAAI,KAAK,EAAE,QAAQ,CAAC,CAAC,IAAI,CAAC,CAAC;AACzC,CAAC;AAED,SAAS,CAAC,SAAS,CAAC,KAAK,GAAG,UAAU,CAAC","file":"union.js","sourcesContent":["import { IterableX } from '../../iterable/iterablex';\nimport { union } from '../../iterable/operators/union';\n\n/**\n * @ignore\n */\nexport function unionProto<T>(\n  this: IterableX<T>,\n  right: Iterable<T>,\n  comparer?: (x: T, y: T) => boolean\n): IterableX<T> {\n  return union<T>(right, comparer)(this);\n}\n\nIterableX.prototype.union = unionProto;\n\ndeclare module '../../iterable/iterablex' {\n  interface IterableX<T> {\n    union: typeof unionProto;\n  }\n}\n"]}