Open
Description
Version
v24.0.2
Platform
Microsoft Windows NT 10.0.22631.0 x64
Subsystem
fs/promises
What steps will reproduce the bug?
Run code using glob
from fs/promises
, e.g.
// glob.mjs
import * as fs from 'node:fs/promises';
for await (const file of fs.glob("*"))
console.log(file);
How often does it reproduce? Is there a required condition?
Always.
What is the expected behavior? Why is that the expected behavior?
No warning from v24.0.0 onward which according to the docs has glob
as a stable API.
What do you see instead?
(node:28284) ExperimentalWarning: glob is an experimental feature and might change at any time
(Usenode --trace-warnings ...
to show where the warning was created)
Additional information
No response