(length)
| 8 | const hasOwnProp = Object.prototype.hasOwnProperty; |
| 9 | |
| 10 | function padding(length) { |
| 11 | return new Array(length + 1).join(' '); |
| 12 | } |
| 13 | |
| 14 | function padLeft(str, length) { |
| 15 | return padding(length) + str; |
no outgoing calls
no test coverage detected
searching dependent graphs…