2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2025-01-27 09:08:31 +00:00
2017-07-31 15:51:51 +05:30

25 lines
401 B
JavaScript

'use strict';
var isFinite = require('is-finite');
module.exports = function (str, n) {
if (typeof str !== 'string') {
throw new TypeError('Expected `input` to be a string');
}
if (n < 0 || !isFinite(n)) {
throw new TypeError('Expected `count` to be a positive finite number');
}
var ret = '';
do {
if (n & 1) {
ret += str;
}
str += str;
} while ((n >>= 1));
return ret;
};