1.0.0 • Published 5 years ago

wrap-with-rainbows v1.0.0

Weekly downloads
1
License
MIT
Repository
-
Last release
5 years ago

🌈🌈 Wrap with Rainbows 🌈🌈

Installation

npm i wrap-with-rainbows

Usage

Parameters

  1. String (required) - The string to wrap with rainbows.
  2. 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.🌈🌈🌈🌈🌈"
~~