edf2csv 0.8.28 → 0.8.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cli.js CHANGED
@@ -545,6 +545,7 @@ export async function main(argv) {
545
545
  start: optionalTime(values['start'], '--start'),
546
546
  startText: typeof values['start'] === 'string' ? values['start'] : undefined,
547
547
  duration: optionalTime(values['duration'], '--duration'),
548
+ durationText: typeof values['duration'] === 'string' ? values['duration'] : undefined,
548
549
  end: optionalTime(values['end'], '--end'),
549
550
  endText: typeof values['end'] === 'string' ? values['end'] : undefined,
550
551
  decimals: optionalDecimals(values['decimals']),