UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

10 lines (9 loc) 204 B
import { escapeElement } from "./escape-element"; export class XmlText { constructor(value) { this.value = value; } toString() { return escapeElement("" + this.value); } }