Extend lines to equal length
npm install equal-length> Extend lines to equal length
```
$ npm install --save equal-length
.join() and .split() are used only to demo line length
`js
const equalLength = require('equal-length');
equalLength([
'abc',
'a'
].join('\n')).split('\n');
// => [
// 'abc',
// 'a '
// ]
`
#### input
Type: string`
Multiline string.
MIT © Vadim Demedes