From de3fdfaa6f449db35053f55d455c83d204916593 Mon Sep 17 00:00:00 2001 From: Alex Zherdev Date: Wed, 27 Nov 2019 10:43:06 -0800 Subject: [PATCH] doc: avoid proposal syntax in code example PR-URL: https://github.com/nodejs/node/pull/30685 Reviewed-By: Anna Henningsen Reviewed-By: Myles Borins --- doc/api/esm.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/api/esm.md b/doc/api/esm.md index 9a6bb62fab110a..57db302c307d7b 100644 --- a/doc/api/esm.md +++ b/doc/api/esm.md @@ -667,7 +667,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