| 177 | } |
| 178 | |
| 179 | class CanvasTxt { |
| 180 | constructor(txt, { fontSize = 200, fontFamily = 'Arial', color = '#fdf9f3' } = {}) { |
| 181 | this.canvas = document.createElement('canvas'); |
| 182 | this.context = this.canvas.getContext('2d'); |
nothing calls this directly
no outgoing calls
no test coverage detected