UNPKG

approvals

Version:

Approval Tests Library - Capturing Human Intelligence

16 lines (15 loc) 335 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.StringWrapper = void 0; class StringWrapper { constructor() { this.contents = ""; } toString() { return this.contents; } append(text) { this.contents += text; } } exports.StringWrapper = StringWrapper;