UNPKG

@opra/cli

Version:
14 lines (13 loc) 296 B
export class CodeBlock { toString() { // if (this.content) return this.content; let out = ''; for (const x of Object.values(this)) { out += String(x); } return out; } [Symbol.toStringTag]() { return this.toString(); } }