Files
HeurAMS/src/heurams/services/textproc.py
2026-01-04 04:46:19 +08:00

5 lines
89 B
Python

def truncate(text):
if len(text) <= 3:
return text
return text[:3] + ">"