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
/
right-pad.js
7 lines
(5 loc)
•
120 B
JavaScript
View Raw
1
2
3
4
5
6
7
'use strict'
module
.
exports
=
(
string
, n =
0
) =>
{ n -=
string
.
length
return
string
+
' '
.
repeat
(n > -
1
? n :
0
) }