@@ -248,7 +248,7 @@ This property is experimental and can change in the future. It should only be us
248248by tools converting ES modules into CommonJS modules, following existing ecosystem
249249conventions. Code authored directly in CommonJS should avoid depending on it.
250250
251- When a  ES Module contains both named exports and a default export, the result returned by ` require() ` 
251+ When an  ES Module contains both named exports and a default export, the result returned by ` require() ` 
252252is the module namespace object, which places the default export in the ` .default `  property, similar to
253253the results returned by ` import() ` .
254254To customize what should be returned by ` require(esm) `  directly, the ES Module can export the
@@ -368,7 +368,7 @@ LOAD_AS_FILE(X)
368368      1. MAYBE_DETECT_AND_LOAD(X.js) 
369369    c. If the SCOPE/package.json contains "type" field, 
370370      1. If the "type" field is "module", load X.js as an ECMAScript module. STOP. 
371-       2. If the "type" field is "commonjs", load X.js as an  CommonJS module. STOP. 
371+       2. If the "type" field is "commonjs", load X.js as a  CommonJS module. STOP. 
372372    d. MAYBE_DETECT_AND_LOAD(X.js) 
3733733. If X.json is a file, load X.json to a JavaScript Object. STOP 
3743744. If X.node is a file, load X.node as binary addon. STOP 
@@ -379,7 +379,7 @@ LOAD_INDEX(X)
379379    b. If no scope was found, load X/index.js as a CommonJS module. STOP. 
380380    c. If the SCOPE/package.json contains "type" field, 
381381      1. If the "type" field is "module", load X/index.js as an ECMAScript module. STOP. 
382-       2. Else, load X/index.js as an  CommonJS module. STOP. 
382+       2. Else, load X/index.js as a  CommonJS module. STOP. 
3833832. If X/index.json is a file, parse X/index.json to a JavaScript object. STOP 
3843843. If X/index.node is a file, load X/index.node as binary addon. STOP 
385385
0 commit comments