Socket
Socket
Sign inDemoInstall

lpad-align

Package Overview
Dependencies
68
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    lpad-align

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


Version published
Weekly downloads
579K
increased by5.69%
Maintainers
1
Install size
1.23 MB
Created
Weekly downloads
 

Readme

Source

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

Keywords

FAQs

Last updated on 05 Jul 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc