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.

publishLast.js 311B

1234567
  1. /** PURE_IMPORTS_START _AsyncSubject,_multicast PURE_IMPORTS_END */
  2. import { AsyncSubject } from '../AsyncSubject';
  3. import { multicast } from './multicast';
  4. export function publishLast() {
  5. return function (source) { return multicast(new AsyncSubject())(source); };
  6. }
  7. //# sourceMappingURL=publishLast.js.map