UNPKG

@openxmldev/linq-to-xml

Version:
22 lines 426 B
/** * @author Thomas Barnekow * @license MIT */ /** * A super-simple and preliminary implementation of a `StringBuilder`. * * @internal */ export class StringBuilder { constructor() { this.array = []; } append(text) { this.array.push(text); return this; } toString() { return this.array.join(''); } } //# sourceMappingURL=StringBuilder.js.map