FillS the string with the given value until the string reaches the specified size
pad("123", 5, 0); // "12300"
pad("123", -5, 0); // "00123"
Optional
Generated using TypeDoc
FillS the string with the given value until the string reaches the specified size
Example
Example