lpad-align

3.0.0 • Public • Published

lpad-align Build Status

Left pad a string to align with the longest string in an array

Install

$ npm install lpad-align

Usage

const lpadAlign = require('lpad-align');

const words = [
	'foo',
	'foobar',
	'foobarcat'
];

for (const x of words) {
	console.log(lpadAlign(x, words, 4));
}

/*
		  foo
	   foobar
	foobarcat
 */

API

lpadAlign(string, array, indent)

string

Type: string

String that will be padded.

array

Type: Array

Array to align against.

indent

Type: number
Default: 4

Indentation to prepend the string with.

CLI

$ npm install --global lpad-align
  Usage
    $ cat <file> | lpad-align

  Example
    $ cat unicorn.txt | lpad-align
          foo
       foobar
    foobarcat

Dependencies (4)

Dev Dependencies (2)

Package Sidebar

Install

npm i lpad-align

Weekly Downloads

559,613

Version

3.0.0

License

MIT

Unpacked Size

3.69 kB

Total Files

5

Last publish

Collaborators

  • kevva