mirror of
https://github.com/biobulkbende/biobulkbende.org.git
synced 2024-11-05 16:48:43 +00:00
8 lines
314 B
JavaScript
8 lines
314 B
JavaScript
|
/** PURE_IMPORTS_START .._AsyncSubject,._multicast PURE_IMPORTS_END */
|
||
|
import { AsyncSubject } from '../AsyncSubject';
|
||
|
import { multicast } from './multicast';
|
||
|
export function publishLast() {
|
||
|
return function (source) { return multicast(new AsyncSubject())(source); };
|
||
|
}
|
||
|
//# sourceMappingURL=publishLast.js.map
|