Sha256: d801f38c5f1a54ebde01a1ef9ad9edb9ed6a8f40b41b0d9d31304afc62f55c3d
Contents?: true
Size: 330 Bytes
Versions: 22
Compression:
Stored size: 330 Bytes
Contents
import DEBUG from "../debug"; export class StreamRenderer { constructor(frame, action) { this.frame = frame; this.action = action; } render() { if (DEBUG) console.debug("stream-renderer:render"); this.frame.src = ""; this.frame.innerHTML = ""; this.frame.append(this.action.templateContent); } }
Version data entries
22 entries across 22 versions & 1 rubygems