I get the following error when trying to use the default export like:
import F from '@mirailabs/fiona';
const curriedFn = F.curry(...);
results in this error:
TypeError: undefined is not an object (evaluating '_fiona.default.curry')
If I destructure curry everything works fine.
I get the following error when trying to use the default export like:
results in this error:
If I destructure
curryeverything works fine.