Mark Volkmann (2014-03-14T14:50:04.000Z)
domenic at domenicdenicola.com (2014-03-21T15:04:46.665Z)
Is the common use case for "export default" when you want to give users of the module an easy way to obtain a single function? So instead of users doing this: ```js import {someFn} from 'wherever'; ``` they can do this: ```js import someFn from 'wherever'; ```