DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
130 Bytes
var pad = require('./pad');
module.exports = function lrpad(str, length, padStr) {
return pad(str, length, padStr, 'both');
};