Padding
Adds padding to given string.
padStart
Pads the start of a string with a specified fill string a certain number of times.
// Basic UsagepadStart('hello', '+', 3) // +++hello
// Limiting total lengthpadStart('hello', '-', 4, 8) // ---hello
padStart
Pads the end of a string with a specified fill string a certain number of times.
// Basic UsagepadStart('hello', '+', 3) // +++hello
// Limiting total lengthpadStart('hello', '-', 4, 8) // ---hello
padBidirectional
Pads a string with a specified fill string a certain number of times on both ends.
// Basic usagepadBidirectional('hello', '*', 2) // '**hello**'
// Limiting total lengthpadBidirectional('world', '-', 3, 10) // '--world---'
// Controlling padding distributionpadBidirectional('example', '_', 2, 10, 0) // '**example_'