DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
206 Bytes
module.exports = {
prefix(prop) {
let match = prop.match(/^(-\w+-)/)
if (match) {
return match[0]
}
return ''
},
unprefixed(prop) {
return prop.replace(/^-\w+-/, '')
}
}