(lines: number)
| 14 | } |
| 15 | |
| 16 | function generateComplexVT(lines: number): string { |
| 17 | let output = ''; |
| 18 | for (let i = 0; i < lines; i++) { |
| 19 | output += `\x1b[1;4;38;2;255;128;0mBold underline RGB\x1b[0m `; |
| 20 | output += `\x1b[48;5;236mBG 256\x1b[0m `; |
| 21 | output += `\x1b[7mInverse\x1b[0m\r\n`; |
| 22 | } |
| 23 | return output; |
| 24 | } |
| 25 | |
| 26 | function generateRawBytes(size: number): Uint8Array { |
| 27 | const data = new Uint8Array(size); |
no outgoing calls
no test coverage detected
searching dependent graphs…