Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

endWith.js 459B

12345678910111213
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. var concat_1 = require("../observable/concat");
  4. var of_1 = require("../observable/of");
  5. function endWith() {
  6. var array = [];
  7. for (var _i = 0; _i < arguments.length; _i++) {
  8. array[_i] = arguments[_i];
  9. }
  10. return function (source) { return concat_1.concat(source, of_1.of.apply(void 0, array)); };
  11. }
  12. exports.endWith = endWith;
  13. //# sourceMappingURL=endWith.js.map