UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

7 lines (6 loc) 165 B
export function fromUtf8(input) { return new TextEncoder().encode(input); } export function toUtf8(input) { return new TextDecoder("utf-8").decode(input); }