ansi.luau Coverage

Total Execution Hits: 1

Function Coverage Overview: 11.11%

Function Coverage:

FunctionHits
1
white_underline:20
white:60
green:100
red:140
yellow:180
red_highlight:220
green_highlight:260
gray:300

Source Code:

>>>>>>>>>>>>>>>
LineHitsCode
11return {
21white_underline = function(s: any)
30return `\27[1;4m{s}\27[0m`
4N/Aend,
5N/A
61white = function(s: any)
70return `\27[37;1m{s}\27[0m`
8N/Aend,
9N/A
101green = function(s: any)
110return `\27[32;1m{s}\27[0m`
12N/Aend,
13N/A
141red = function(s: any)
150return `\27[31;1m{s}\27[0m`
16N/Aend,
17N/A
181yellow = function(s: any)
190return `\27[33;1m{s}\27[0m`
20N/Aend,
21N/A
221red_highlight = function(s: any)
230return `\27[41;1;30m{s}\27[0m`
24N/Aend,
25N/A
261green_highlight = function(s: any)
270return `\27[42;1;30m{s}\27[0m`
28N/Aend,
29N/A
301gray = function(s: any)
310return `\27[30;1m{s}\27[0m`
32N/Aend,
330}