UNPKG

vaccine-stats-plugin

Version:

A Module to Get Various Vaccine Statistics Related to India from Various Sources and Additionally Can tweet with the Given Configuration

13 lines (12 loc) 282 B
module.exports = (tweetArray) => { let correctArray = []; if (Array.isArray(tweetArray)) { correctArray = tweetArray; } else { correctArray = [tweetArray]; } const newArray = correctArray.map((tweet) => ({ text: tweet, })); return newArray; };