Spracherkennung für: .ts vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]
import { sanitizeForLog } from "../../terminal/ansi.js";
export function sanitizeDoctorNote(note: string): string {
return note
.split("\n")
.map((line) => sanitizeForLog(line))
.join("\n");
}
export function emitDoctorNotes(params: {
note: (message: string, title?: string) => void;
changeNotes?: string[];
warningNotes?: string[];
}): void {
for (const change of params.changeNotes ?? []) {
params.note(sanitizeDoctorNote(change), "Doctor changes");
}
for (const warning of params.warningNotes ?? []) {
params.note(sanitizeDoctorNote(warning), "Doctor warnings");
}
}
¤ Dauer der Verarbeitung: 0.22 Sekunden
(vorverarbeitet am 2026-04-27)
¤
*© Formatika GbR, Deutschland