UNPKG
mabihousing
Version:
latest (1.0.1)
1.0.1
1.0.0
module for invoking mabinogi's housing board
mabihousing
/
src
/
lib
/
leftpad.js
11 lines
•
225 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
module.exports = leftpad; function leftpad (
str
,
len
, ch) {
str
= String(
str
); var i = -
1
;
if
(!ch && ch !==
0
) ch =
' '
;
len
=
len
-
str
.length;
while
(++i <
len
) {
str
= ch +
str
; }
return
str
; }