UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

9 lines (8 loc) 186 B
export function toStream(bytes) { return new ReadableStream({ start(controller) { controller.enqueue(bytes); controller.close(); }, }); }