Usage
:warning: The code requires
regeneratorRuntime
to be defined, for instance by importing regenerator-runtime/runtime.
First, require the polyfill at the entry point of your application
await import( 'regenerator-runtime/runtime.js' );
// or
import 'regenerator-runtime/runtime.js' ;
Then
const fingertree = await import( '@functional-data-structure/finger-tree' ) ;
// or
import fingertree from '@functional-data-structure/finger-tree' ;