paddy

1.0.0 • Public • Published

🌾🌾 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!"

Package Sidebar

Install

npm i paddy

Weekly Downloads

0

Version

1.0.0

License

MIT

Unpacked Size

1.3 kB

Total Files

4

Last publish

Collaborators

  • evanwieland