1
0
mirror of https://gitee.com/onvia/ccc-tnt-psd2ui synced 2025-06-10 20:54:03 +00:00

12 lines
312 B
JavaScript
Raw Normal View History

2023-07-24 10:36:46 +08:00
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