[Recently I implemented the ability to pass `array`s into `write`][implemented-arrays], but [`writeSwitch` still compares for an array and then spreads][still-spreads]. `writeSwitch` should be updated to just pass any value into `write` without comparing types first. [implemented-arrays]: https://github.com/ninetynine/git-admin/blob/c7cda12bcc24e67df464d3ef898dd33042baf26d/src/helpers/cli.js#L25-L39 [still-spreads]: https://github.com/ninetynine/git-admin/blob/c7cda12bcc24e67df464d3ef898dd33042baf26d/src/helpers/cli.js#L46-L60
Recently I implemented the ability to pass
arrays intowrite, butwriteSwitchstill compares for an array and then spreads.writeSwitchshould be updated to just pass any value intowritewithout comparing types first.