Gitiles
Code Review
Sign In
git.clicks.codes
/
Clicks
/
Nucleus
/
380b6ad0245326a7cd34f6e0e1649ca55c7c4e82
/
.
/
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
)
+
"..."
;
};