sindresorhus / cat-pad

🐈 Left pad a string with cats
MIT License
56 stars 8 forks source link

cat-pad

Install

$ npm install cat-pad

Usage

import catPad from 'cat-pad';

catPad('Meow', 6);
//=> '🐈🐈Meow'

API

catPad(input, length)

Pads input with cats on the left side if it's shorter than length. Padding cats are truncated if they exceed length.

input

Type: string

String to pad.

length

Type: number\ Default: 0

Padding length.