File tree 3 files changed +3
-2
lines changed
3 files changed +3
-2
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 2
2
The code needs a ES2015+ polyfill to work, for example
3
3
[ regenerator-runtime/runtime] ( https://babeljs.io/docs/usage/polyfill ) .
4
4
``` js
5
- require ( ' regenerator-runtime/runtime' ) ;
5
+ await import ( ' regenerator-runtime/runtime.js ' ) ;
6
6
// or
7
7
import ' regenerator-runtime/runtime.js' ;
8
8
```
9
9
10
10
Then
11
11
``` js
12
- const { empty , from } = require ( ' @binary-search-tree/red-black-tree' ) ;
12
+ const { empty , from } = await import ( ' @binary-search-tree/red-black-tree' ) ;
13
13
// or
14
14
import { empty , from } from ' @binary-search-tree/red-black-tree' ;
15
15
```
Original file line number Diff line number Diff line change 19
19
" red-black tree"
20
20
],
21
21
"sideEffects" : false ,
22
+ "type" : " module" ,
22
23
"source" : " src/index.js" ,
23
24
"main" : " dist/index.cjs" ,
24
25
"module" : " dist/index.module.js" ,
You can’t perform that action at this time.
0 commit comments