cat-pad

Left pad a string with cats

Usage no npm install needed!

<script type="module">
  import catPad from 'https://cdn.skypack.dev/cat-pad';
</script>

README

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.