Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
doc: fix extension in esm example
PR-URL: #33408
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Myles Borins <myles.borins@gmail.com>
  • Loading branch information
devsnek authored and codebytere committed Jun 9, 2020
1 parent b924910 commit a9ed287
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doc/api/esm.md
Expand Up @@ -16,19 +16,19 @@ code for reuse. Modules are defined using a variety of [`import`][] and
The following example of an ES module exports a function:

```js
// addTwo.js
// addTwo.mjs
function addTwo(num) {
return num + 2;
}

export { addTwo };
```

The following example of an ES module imports the function from `addTwo.js`:
The following example of an ES module imports the function from `addTwo.mjs`:

```js
// app.js
import { addTwo } from './addTwo.js';
// app.mjs
import { addTwo } from './addTwo.mjs';

// Prints: 6
console.log(addTwo(4));
Expand Down

0 comments on commit a9ed287

Please sign in to comment.