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