Left pad a string to align with the longest string in an array
npm install lpad-align> Left pad a string to align with the longest string in an array
```
$ npm install lpad-align
`js
const lpadAlign = require('lpad-align');
const words = [
'foo',
'foobar',
'foobarcat'
];
for (const x of words) {
console.log(lpadAlign(x, words, 4));
}
/*
foo
foobar
foobarcat
*/
`
#### string
Type: string
String that will be padded.
#### array
Type: Array
Array to align against.
#### indent
Type: number\4
Default:
Indentation to prepend the string with.
``
$ npm install --global lpad-align
`
Usage
$ cat
Example
$ cat unicorn.txt | lpad-align
foo
foobar
foobarcat
``