I set a option as 'string': ``` ... account: ['a', 'account number', 'string'] ... ``` And this works well in most cases EXCEPT when the value is a number: ``` $ ./script.js -a 12345 ``` In this case, `typeof (options.account)` is `number`. Can you do a covert to String when you do a `cli.getValue(...)`? Thanks!