From 61df843c95247df965f5c69e7d708741db8b351b 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 c512ea9867869b..b90927c0d57cec 100644 --- a/doc/api/esm.md +++ b/doc/api/esm.md @@ -133,7 +133,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] |