binary-decision-diagram
Version:
A library to create, minimize and optimize binary decision diagrams
13 lines (10 loc) • 335 B
text/typescript
/**
* because babel can only export on default-attribute,
* we use this for the non-module-build
* this ensures that users do not have to use
* var BroadcastChannel = require('broadcast-channel').default;
* but
* var BroadcastChannel = require('broadcast-channel');
*/
import * as pkg from './index.js';
module.exports = pkg;