wed
Version:
Wed is a schema-aware editor for XML documents.
15 lines (12 loc) • 387 B
JavaScript
define(function(require,exports,module){
import { concat as concatStatic } from '../observable/concat';
/* tslint:enable:max-line-length */
/**
* @deprecated Deprecated in favor of static concat.
*/
export function concat(...observables) {
return (source) => source.lift.call(concatStatic(source, ...observables));
}
//# sourceMappingURL=concat.js.map
return module.exports;
});