README
🌈🌈 Wrap with Rainbows 🌈🌈
Installation
npm i wrap-with-rainbows
Usage
Parameters
- String (required) - The string to wrap with rainbows.
- Number of Rainbows - The number of rainbows to wrap the string with. The default is 3.
const addRainbows = require('wrap-with-rainbows');
const str = "I need more rainbows.";
const output = addRainbows(str, 5); // "🌈🌈🌈🌈🌈I need more rainbows.🌈🌈🌈🌈🌈"
~~