DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
231 Bytes
var makeString = require('./helper/makeString');
module.exports = function(str, callback) {
str = makeString(str);
if (str.length === 0 || typeof callback !== 'function') return str;
return str.replace(/./g, callback);
};