UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

7 lines 333 B
import { Subject } from '../Subject'; import { multicast } from './multicast'; import { connect } from './connect'; export function publish(selector) { return selector ? function (source) { return connect(selector)(source); } : function (source) { return multicast(new Subject())(source); }; } //# sourceMappingURL=publish.js.map