wrap-with-rainbows
v1.0.0
Published
This package will take any string you give it and wrap it with rainbow emoji π
Downloads
1
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.πππππ"
~~