mirror of
https://github.com/nodejs/node.git
synced 2024-11-25 16:34:05 +01:00
fddcd6253b
Also consistently import the `common` module where possible. PR-URL: https://github.com/nodejs/node/pull/19409 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Guy Bedford <guybedford@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Khaidi Chu <i@2333.moe> Reviewed-By: Richard Lau <riclau@uk.ibm.com>
9 lines
332 B
JavaScript
9 lines
332 B
JavaScript
// Flags: --experimental-modules --loader ./test/fixtures/es-module-loaders/js-loader.mjs
|
|
/* eslint-disable node-core/required-modules */
|
|
import { namedExport } from '../fixtures/es-module-loaders/js-as-esm.js';
|
|
import assert from 'assert';
|
|
import ok from '../fixtures/es-modules/test-esm-ok.mjs';
|
|
|
|
assert(ok);
|
|
assert(namedExport);
|