| 51 | const PX_RATIO = typeof window !== 'undefined' ? window.devicePixelRatio : 1; |
| 52 | |
| 53 | class AsciiFilter { |
| 54 | constructor(renderer, { fontSize, fontFamily, charset, invert } = {}) { |
| 55 | this.renderer = renderer; |
| 56 | this.domElement = document.createElement('div'); |
nothing calls this directly
no outgoing calls
no test coverage detected