paddy
v1.0.0
Published
Tiny (60B) JavaScript module for inserting character padding into a string
Maintainers
Readme
🌾🌾 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!"