UNPKG
@terascope/fetch-github-release
Version:
latest (2.3.1)
2.3.1
2.3.0
2.2.2
2.2.1
2.1.0
2.0.0
1.0.0
0.8.10
0.8.9
0.8.8
0.8.7
0.8.5
0.8.4
0.8.3
0.8.2
0.8.1
0.8.0
0.7.9
0.7.8
0.7.7
0.7.6
0.7.5
0.7.4
0.7.3
0.7.2
0.7.1
0.7.0
0.6.1
0.6.0
0.5.0
0.4.1
0.4.0
Download a specific release from github
terascope/fetch-github-release
@terascope/fetch-github-release
/
dist
/
src
/
rpad.js
8 lines
•
224 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
export
function
rpad
(
text, len
) {
let
t = text;
if
(t.
length
> len) { t =
`
${text.substr(
0
, len -
3
)}
...`
; }
return
`
${t}
${
new
Array
(len - t.length +
1
).join(
' '
)}
`
; }
//# sourceMappingURL=rpad.js.map