Package Exports
- equal-length
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (equal-length) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
equal-length 
Extend lines to equal length
Install
$ npm install --save equal-lengthUsage
.join() and .split() are used only to demo line length
const equalLength = require('equal-length');
equalLength([
'abc',
'a'
].join('\n')).split('\n');
// => [
// 'abc',
// 'a '
// ]API
equalLength(input)
input
Type: string
Multiline string.
License
MIT © Vadim Demedes