UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

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