MCPcopy Create free account
hub / github.com/coder/ghostty-web / generateComplexVT

Function generateComplexVT

bench/versus.ts:16–24  ·  view source on GitHub ↗
(lines: number)

Source from the content-addressed store, hash-verified

14}
15
16function 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
26function generateRawBytes(size: number): Uint8Array {
27 const data = new Uint8Array(size);

Callers 1

versus.tsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…