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