Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

11 linhas
312 B

há 4 anos
  1. const Range = require('../classes/range')
  2. const validRange = (range, options) => {
  3. try {
  4. // Return '*' instead of '' so that truthiness works.
  5. // This will throw if it's invalid anyway
  6. return new Range(range, options).range || '*'
  7. } catch (er) {
  8. return null
  9. }
  10. }
  11. module.exports = validRange