this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Linting

+5 -2
+5 -2
cli.js
··· 193 193 194 194 console.log( 195 195 '\x1b[1m%s\x1b[33m%s\x1b[0m', 196 - ' 100MB speed: ', 196 + ' 100MB speed: ', 197 197 `${stats.median(test6).toFixed(2)} Mbps` 198 198 ); 199 199 ··· 201 201 '\x1b[1m%s\x1b[32m%s\x1b[0m', 202 202 'Download speed: ', 203 203 `${stats 204 - .quartile([...test1, ...test2, ...test3, ...test4, ...test5, ...test6], 0.9) 204 + .quartile( 205 + [...test1, ...test2, ...test3, ...test4, ...test5, ...test6], 206 + 0.9 207 + ) 205 208 .toFixed(2)} Mbps` 206 209 ); 207 210