DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
162 Bytes
const parse = require('./parse')
const valid = (version, options) => {
const v = parse(version, options)
return v ? v.version : null
}
module.exports = valid