ThongCoder's picture
Upload folder using huggingface_hub
06227db
raw
history blame
176 Bytes
'use strict'
const parse = require('./parse')
const valid = (version, options) => {
const v = parse(version, options)
return v ? v.version : null
}
module.exports = valid