From d69f7651fa3855bc35d0b633d5dc236286a24c88 Mon Sep 17 00:00:00 2001 From: Myles Borins Date: Mon, 18 Mar 2019 18:56:22 -0400 Subject: [PATCH] fixup: doc add link to ecma262 --- doc/api/esm.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/api/esm.md b/doc/api/esm.md index 943a558d51..ed343175be 100644 --- a/doc/api/esm.md +++ b/doc/api/esm.md @@ -7,9 +7,9 @@ ## Introduction -ECMAScript modules are the official standard format to package JavaScript code -for reuse. Modules are defined using a variety of [`import`][] and [`export`][] -statements. +ECMAScript modules are [the official standard format][] to package JavaScript +code for reuse. Modules are defined using a variety of [`import`][] and +[`export`][] statements. Node.js fully supports ECMAScript modules as they are currently specified and provides limited interoperability between them and the existing module format, @@ -726,3 +726,4 @@ success! [`import()`]: #esm_import-expressions [ecmascript-modules implementation]: https://github.com/nodejs/modules/blob/master/doc/plan-for-new-modules-implementation.md [WHATWG JSON modules]: https://github.com/whatwg/html/issues/4315 +[the official standard format]: https://tc39.github.io/ecma262/#sec-modules