UNPKG
speechkit
Version:
latest (0.1.0)
0.1.0
0.0.1
AI-read audio for your news posts
github.com/bukinoshita/speechkit
bukinoshita/speechkit
speechkit
/
lib
/
short-title.js
8 lines
(5 loc)
•
139 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
'use strict'
module
.
exports
=
string
=>
{
const
short =
string
.
length
>
25
?
`
${
string
.substring(
0
,
25
)}
...`
:
string
return
short }