mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
6934792eb3
PR-URL: https://github.com/nodejs/node/pull/18566 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
9 lines
218 B
JavaScript
9 lines
218 B
JavaScript
// Flags: --experimental-modules
|
|
/* eslint-disable node-core/required-modules */
|
|
|
|
import '../common/index';
|
|
import * as fs from 'fs';
|
|
import assert from 'assert';
|
|
|
|
assert.deepStrictEqual(Object.keys(fs), ['default']);
|