@@ -249,7 +249,7 @@ This property is experimental and can change in the future. It should only be us
249
249
by tools converting ES modules into CommonJS modules, following existing ecosystem
250
250
conventions. Code authored directly in CommonJS should avoid depending on it.
251
251
252
- When a ES Module contains both named exports and a default export, the result returned by ` require() `
252
+ When an ES Module contains both named exports and a default export, the result returned by ` require() `
253
253
is the module namespace object, which places the default export in the ` .default ` property, similar to
254
254
the results returned by ` import() ` .
255
255
To customize what should be returned by ` require(esm) ` directly, the ES Module can export the
@@ -369,7 +369,7 @@ LOAD_AS_FILE(X)
369
369
1. MAYBE_DETECT_AND_LOAD(X.js)
370
370
c. If the SCOPE/package.json contains "type" field,
371
371
1. If the "type" field is "module", load X.js as an ECMAScript module. STOP.
372
- 2. If the "type" field is "commonjs", load X.js as an CommonJS module. STOP.
372
+ 2. If the "type" field is "commonjs", load X.js as a CommonJS module. STOP.
373
373
d. MAYBE_DETECT_AND_LOAD(X.js)
374
374
3. If X.json is a file, load X.json to a JavaScript Object. STOP
375
375
4. If X.node is a file, load X.node as binary addon. STOP
@@ -380,7 +380,7 @@ LOAD_INDEX(X)
380
380
b. If no scope was found, load X/index.js as a CommonJS module. STOP.
381
381
c. If the SCOPE/package.json contains "type" field,
382
382
1. If the "type" field is "module", load X/index.js as an ECMAScript module. STOP.
383
- 2. Else, load X/index.js as an CommonJS module. STOP.
383
+ 2. Else, load X/index.js as a CommonJS module. STOP.
384
384
2. If X/index.json is a file, parse X/index.json to a JavaScript object. STOP
385
385
3. If X/index.node is a file, load X/index.node as binary addon. STOP
386
386
0 commit comments