(e3)
| 3703 | this.fg = 0, this.bg = 0, this.extended = new s2(); |
| 3704 | } |
| 3705 | static toColorRGB(e3) { |
| 3706 | return [e3 >>> 16 & 255, e3 >>> 8 & 255, 255 & e3]; |
| 3707 | } |
| 3708 | static fromColorRGB(e3) { |
| 3709 | return (255 & e3[0]) << 16 | (255 & e3[1]) << 8 | 255 & e3[2]; |
| 3710 | } |
no outgoing calls
no test coverage detected