UNPKG

ember-material-icons

Version:

Google Material icons for your ember-cli app

10 lines (9 loc) 195 B
module.exports = function strRepeat(str, qty){ if (qty < 1) return ''; var result = ''; while (qty > 0) { if (qty & 1) result += str; qty >>= 1, str += str; } return result; };