1
0
mirror of https://gitee.com/onvia/ccc-tnt-psd2ui synced 2025-01-22 02:51:27 +00:00
2023-07-24 10:36:46 +08:00

12 lines
312 B
JavaScript

const Range = require('../classes/range')
const validRange = (range, options) => {
try {
// Return '*' instead of '' so that truthiness works.
// This will throw if it's invalid anyway
return new Range(range, options).range || '*'
} catch (er) {
return null
}
}
module.exports = validRange