All files / src/parser/options cast.js

0% Statements 0/35
0% Branches 0/20
0% Functions 0/1
0% Lines 0/30

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49                                                                                                 
const {argumentIsNotABool, argumentIsNotANumber} = require('../../errors')
 
module.exports = ({errs = [], opts: OPTS = []} = {}) => {
  const opts = []
 
  for (let i = 0; i < OPTS.length; i++) {
    const option = OPTS[i]
    const {values: VALUES, types} = option
 
    let values = []
 
    if (typeof types === 'undefined' || types === null) {
      values = VALUES
    } else {
      if (types.length === 0) {
        values.push(true)
      } else {
        for (let j = 0; j < types.length; j++) {
          const type = types[j]
          const arg  = VALUES[j]
          switch (type) {
            case 'count':
              values.push(1)
              break
            case 'string':
              values.push(arg)
              break
            case 'number':
              const float = parseFloat(arg)
              if (!Number.isNaN(float)) values.push(float)
              else errs.push(argumentIsNotANumber({arg, option}))
              break
            case 'bool':
              if (arg === 'true')       values.push(true)
              else if (arg === 'false') values.push(false)
              else errs.push(argumentIsNotABool({arg, option}))
              break
            default:
              break
          }
        }
      }
    }
 
    opts.push({...option, values, types})
  }
 
  return {errs, opts}
}