UNPKG
ldml-number
Version:
latest (1.1.0)
1.1.0
1.0.2
1.0.1
1.0.0
Formats numbers using the Unicode formatting standard, LDML.
ldml-number
/
src
/
padright.js
5 lines
(4 loc)
•
98 B
JavaScript
View Raw
1
2
3
4
5
module
.
exports
=
function
(
s, l, p =
'0'
) {
while
( s.
length
< l ) { s += p; }
return
s; };