UNPKG

asciitorium

Version:

an ASCII ui framework for web + cli

11 lines (10 loc) 309 B
export class DomRenderer { constructor(screen) { this.screen = screen; this.screen.style.whiteSpace = 'pre'; this.screen.style.fontFamily = 'PrintChar21, monospace'; } render(buffer) { this.screen.textContent = buffer.map((row) => row.join('')).join('\n'); } }