cloudinary
Version:
Cloudinary NPM for node.js integration
23 lines (21 loc) • 711 B
JavaScript
function repeatStringNumTimes(string, times) {
let repeatedString = "";
while (times > 0) {
repeatedString += string;
times--;
}
return repeatedString;
}
module.exports = (value, targetLength, padString) => {
targetLength = targetLength >> 0; // truncate if number or convert non-number to 0;
padString = String((typeof padString !== 'undefined' ? padString : ' '));
if (value.length > targetLength) {
return String(value);
} else {
targetLength = targetLength - value.length;
if (targetLength > padString.length) {
padString += repeatStringNumTimes(padString, targetLength / padString.length);
}
return padString.slice(0, targetLength) + String(value);
}
}