Imports question. I'm using a library (https://www.npmjs.com/package/indefinite) where I can do this:
import * as indefinite from 'indefinite';
console.log(indefinite.default('apple'));
The default part 'feels' wrong to me. Is there a better way to import that?
It works though so... deal with it?