JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 265400
  • Score
    100M100P100Q58906F
  • License MIT

Right Pad adds a padding to the right side of the string with the character of your choice or just blank space.

Package Exports

  • right-pad

Readme

Right Pad

Right Pad adds a "padding" to the right side of the string with the character of your choice or just blank space.

Usage

var rightpad = require("right-pad");
rightpad("hello world", 14, "."); // => hello world...