Home Manual Reference Source

Usage

:warning: Depending on your environment, the code may require 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, import the library where needed

const cartesianProduct = await import( '@set-theory/cartesian-product' ) ;
// or
import * as cartesianProduct from '@set-theory/cartesian-product' ;