From 3815f0c880624d15237d7fd79afe26299ea0b455 Mon Sep 17 00:00:00 2001 From: Gus Caplan Date: Mon, 15 Jan 2018 13:13:23 -0600 Subject: [PATCH] doc: cjs format is now commonjs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/18165 Reviewed-By: Guy Bedford Reviewed-By: Tobias Nießen Reviewed-By: Luigi Pinca Reviewed-By: Colin Ihrig Reviewed-By: Tiancheng "Timothy" Gu Reviewed-By: James M Snell Reviewed-By: Ruben Bridgewater --- doc/api/esm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/esm.md b/doc/api/esm.md index 20e582d30b8..0e86c381f1a 100644 --- a/doc/api/esm.md +++ b/doc/api/esm.md @@ -132,7 +132,7 @@ module. This can be one of the following: | `format` | Description | | --- | --- | | `"esm"` | Load a standard JavaScript module | -| `"cjs"` | Load a node-style CommonJS module | +| `"commonjs"` | Load a node-style CommonJS module | | `"builtin"` | Load a node builtin CommonJS module | | `"json"` | Load a JSON file | | `"addon"` | Load a [C++ Addon][addons] |