File size: 122 Bytes
6a2bc3b
 
 
1
2
3
4
export function cleanSystemTags(text: string): string {
  return text.replace(/<system>.*?<\/system>\s*/gs, "").trim();
}