Gitiles
Code Review
Sign In
git.clicks.codes
/
Clicks
/
Nucleus
/
8b3da21da2278f00e95fd483e9d888f606610f9b
/
.
/
src
/
utils
/
ellipsis.ts
blob: 6ec5888abbf93dffd6fcfc7b86617df9998143f0 [
file
] [
log
] [
blame
]
export
default
(
str
:
string
,
max
:
number
):
string
=>
{
if
(
str
.
length
<=
max
)
return
str
;
return
str
.
slice
(
0
,
max
-
3
)
+
"..."
;
}