https://github.com/azer/right-pad
string right pad
https://github.com/azer/right-pad
Last synced: 11 months ago
JSON representation
string right pad
- Host: GitHub
- URL: https://github.com/azer/right-pad
- Owner: azer
- Created: 2014-06-03T05:16:15.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2015-05-20T04:04:36.000Z (about 11 years ago)
- Last Synced: 2024-04-15T03:09:40.001Z (about 2 years ago)
- Language: JavaScript
- Size: 162 KB
- Stars: 7
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## right-pad
String right pad
## Install
```bash
$ npm install right-pad
```
## Usage
```js
var rightpad = require('right-pad')
rightpad('foo', 5)
// => "foo "
rightpad('foobar', 6)
// => "foobar"
rightpad(1, 2, 0)
// => "10"
```