This website works better with JavaScript
홈
탐색
도움말
로그인
LiuFan
/
PrivacyScanData
Watch
1
Star
0
포크
0
파일
이슈
0
풀 리퀘스트
0
위키
트리:
ad9a4f33ff
브랜치
태그
dev-lf
lsn
master
PrivacyScanD...
/
target
/
truncate
/
truncate_2_1.py
truncate_2_1.py
105 B
히스토리
Raw
1
2
def truncate(str, limit, ellipsis='...'):
return str[:limit] + ellipsis if len(str) > limit else str