frontend/.pnpm-store/v3/files/62/df32010be373a3ec3323106fad95b2e8071ab94243d9966338b2ae9e2944a55ee41c0292e31d407a5be80027610b1773e30def25d0d5dfef9718874315e35e

9 lines
443 B
Plaintext

import { observeNotification } from '../Notification';
import { operate } from '../util/lift';
import { createOperatorSubscriber } from './OperatorSubscriber';
export function dematerialize() {
return operate(function (source, subscriber) {
source.subscribe(createOperatorSubscriber(subscriber, function (notification) { return observeNotification(notification, subscriber); }));
});
}
//# sourceMappingURL=dematerialize.js.map