mirror of https://github.com/nodejs/node.git
6 lines
121 B
JavaScript
6 lines
121 B
JavaScript
|
import '../common/index.mjs';
|
||
|
import { stat } from 'fs/promises';
|
||
|
|
||
|
// Should not reject.
|
||
|
stat(new URL(import.meta.url));
|