1 define(['../lang/toString', './repeat'], function (toString, repeat) {
4 * Pad string with `char` if its' length is smaller than `minLen`
6 function rpad(str, minLen, ch) {
9 return (str.length < minLen)? str + repeat(ch, minLen - str.length) : str;