UNPKG

thank-you-tweet-button-004

Version:

Easy-to-use tweet button for saying thank you to @oluwatobiss.

12 lines (11 loc) 365 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.generateStarIcons = generateStarIcons; function generateStarIcons(rating) { const megaStars = `⭐⭐⭐⭐⭐ x ${Math.round(rating / 5)}`; let stars = ""; for (let i = 0; i < rating; i++) { stars += "⭐"; } return rating > 10 ? megaStars : stars; }