module.exports = { makeRain: function (hardRain) { var html = "" html += `
` var amount = 10 var iterationReducer = 3 if (hardRain) { amount = 100 iterationReducer = 1 } for (let index = 0; index < amount; index++) { html += `
` } html += "" html += "
" return html } }