uni-ticket-system/node_modules/licia/repeat.js

13 lines
213 B
JavaScript
Raw Normal View History

2023-12-05 02:11:10 +00:00
exports = function(str, n) {
var ret = '';
if (n < 1) return '';
while (n > 0) {
if (n & 1) ret += str;
n >>= 1;
str += str;
}
return ret;
};
module.exports = exports;