Remove unused files: ROADMAP.md and TNEF test outputs

This commit is contained in:
Linus Rath
2026-03-17 21:26:11 +01:00
parent f720cb3ef8
commit 828ad4df72
5 changed files with 2 additions and 933 deletions
+2 -2
View File
@@ -193,7 +193,7 @@ while (offset + 11 <= data.byteLength) {
} else {
valuePreview = `(${vl} bytes binary)`;
if (propId === 0x1013) {
try { valuePreview += ` preview="${new TextDecoder('utf-8').decode(raw).slice(0, 200)}"`; } catch {}
try { valuePreview += ` preview="${new TextDecoder('utf-8').decode(raw).slice(0, 200)}"`; } catch { /* ignore decode errors */ }
}
}
pOff += vl + pad4(vl);
@@ -220,7 +220,7 @@ while (offset + 11 <= data.byteLength) {
try {
const preview = new TextDecoder('utf-8').decode(attrData.slice(0, Math.min(200, attrData.byteLength)));
console.log(` Preview: "${preview}"`);
} catch {}
} catch { /* ignore decode errors */ }
}
attrIndex++;