I just wanted to drop a suggestion to re-export the `dedent` function. It is helpful in writing help strings for a CLI. ```js import dedent from 'dedent'; const HELP_MESSAGE = dedent` Usage: ... ` ```