We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9aa7d1 commit 4065919Copy full SHA for 4065919
.commitlintrc.js renamed to .commitlintrc.cjs
doc/manual/usage.md
@@ -2,7 +2,7 @@
2
3
Import the library where needed
4
```js
5
-const operator = require( '@functional-abstraction/operator' ) ;
+const operator = await import( '@functional-abstraction/operator' ) ;
6
// or
7
import * as operator from '@functional-abstraction/operator' ;
8
```
package.json
@@ -20,6 +20,7 @@
20
"operator"
21
],
22
"sideEffects": false,
23
+ "type": "module",
24
"source": "src/index.js",
25
"main": "dist/index.js",
26
"module": "dist/index.module.js",
0 commit comments