summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/api/esm.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/api/esm.md b/doc/api/esm.md
index caaecaa0b4..93b89adec1 100644
--- a/doc/api/esm.md
+++ b/doc/api/esm.md
@@ -654,7 +654,10 @@ CommonJS and ES module instances of the package:
```js
// ./node_modules/pkg/index.mjs
- export state from './state.cjs';
+ import state from './state.cjs';
+ export {
+ state
+ };
```
Even if `pkg` is used via both `require` and `import` in an application (for