DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
154 Bytes
export default function(numerals) {
return function(value) {
return value.replace(/[0-9]/g, function(i) {
return numerals[+i];
});
};
}