UNPKG

274 BJavaScriptView Raw
1function fill(string, space, length) {
2 string = string.toString()
3 space = space.toString()
4
5 if (!space.length) {
6 throw new TypeError('space to short')
7 }
8
9 while (string.length < length) {
10 string = space + string
11 }
12 return string
13}
14
15module.exports = fill