1.0.0 β€’ Published 6 years ago

paddy v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

🌾🌾 Paddy

Tiny (60B) JavaScript module for inserting character padding into a string

Purpose

Paddy allows you to insert a padding of desired length and content within a string.

Example

const simpleTab     = paddy(4);
const ghostTab      = paddy(4, 'πŸ‘»');

const simplePhrase  = `${simpleTab}I love simple tabs!`;
const complexPhrase = `${ghostTab}I love ghost tabs!`;

console.log(simplePhrase);  // "    I love simple tabs!"
console.log(complexPhrase); // "πŸ‘»πŸ‘»πŸ‘»πŸ‘»I love ghost tabs!"