fix: remove abnoxious debug file

This commit is contained in:
KernelDeimos 2024-07-17 13:55:38 -04:00
parent f28836180e
commit 5c636d4fd2

View File

@ -56,9 +56,6 @@ const surrounding_box = (col, lines, lengths) => {
const c = str => `\x1b[${col}m${str}\x1b[0m`; const c = str => `\x1b[${col}m${str}\x1b[0m`;
const bar = c(Array(max_length + 4).fill('━').join('')); const bar = c(Array(max_length + 4).fill('━').join(''));
for ( let i = 0 ; i < lines.length ; i++ ) { for ( let i = 0 ; i < lines.length ; i++ ) {
require('fs').appendFileSync('/tmp/asdfqwer',
'' + lines[i] +':'+ lines[i].length +':'+ lengths[i]+
':'+max_length+'\n');
if ( lengths[i] < max_length ) { if ( lengths[i] < max_length ) {
lines[i] += Array(max_length - lengths[i]) lines[i] += Array(max_length - lengths[i])
.fill(' ') .fill(' ')