mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
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));
|