UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

8 lines 283 B
import { Observable } from '../Observable'; import { innerFrom } from './innerFrom'; export function defer(observableFactory) { return new Observable(function (subscriber) { innerFrom(observableFactory()).subscribe(subscriber); }); } //# sourceMappingURL=defer.js.map