1.0.1 • Published 7 years ago

equal-length v1.0.1

Weekly downloads
201,384
License
MIT
Repository
github
Last release
7 years ago

equal-length Build Status

Extend lines to equal length

Install

$ npm install --save equal-length

Usage

.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