UNPKG
@svrooij/ftpd
Version:
latest (0.4.4)
0.4.4
0.4.3
0.4.2
0.4.1
0.4.0
0.3.0
0.2.16
0.2.15
Node FTP Server (reboot)
github.com/svrooij/nodeftpd
svrooij/nodeftpd
@svrooij/ftpd
/
lib
/
helpers
/
leftPad.js
11 lines
(9 loc)
•
172 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
function
leftPad
(
text, width
)
{
let
out
=
''
;
for
(
let
j = text.length; j < width; j++) {
out
+=
' '
; }
out
+= text;
return
out
; } module.exports = leftPad;