UNPKG

ldml-number

Version:

Formats numbers using the Unicode formatting standard, LDML.

5 lines (4 loc) 98 B
module.exports = function ( s, l, p = '0' ) { while ( s.length < l ) { s += p; } return s; };