Socket
Socket
Sign inDemoInstall

pad

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pad

Left and right string padding


Version published
Weekly downloads
200K
decreased by-10.7%
Maintainers
1
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

FAQs

Package last updated on 09 Oct 2017

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc