📅 You're Invited: Meet the Socket team at RSAC (April 28 – May 1).RSVP
Socket
Sign inDemoInstall
Socket

pad

Package Overview
Dependencies
Maintainers
0
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pad

Left and right string padding

3.3.0
latest
Source
npm
Version published
Weekly downloads
302K
38.48%
Maintainers
0
Weekly downloads
 
Created

What is pad?

The 'pad' npm package is a simple utility for padding strings to a specified length with a given character. It is useful for formatting text output, ensuring consistent string lengths, and aligning text in console applications or logs.

What are pad's main functionalities?

Left Padding

Pads the string 'Hello' with spaces on the left to make its total length 10 characters.

const pad = require('pad');
console.log(pad(10, 'Hello')); // '     Hello'

Right Padding

Pads the string 'Hello' with spaces on the right to make its total length 10 characters.

const pad = require('pad');
console.log(pad.right(10, 'Hello')); // 'Hello     '

Custom Character Padding

Pads the string 'Hello' with dots on the left to make its total length 10 characters.

const pad = require('pad');
console.log(pad(10, 'Hello', '.')); // '.....Hello'

Other packages similar to pad

Keywords

pad

FAQs

Package last updated on 29 Sep 2024

Did you know?

Socket

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