Closed
Description
- Version: 15.2.1
- Platform: Windows
- Subsystem: Util
What steps will reproduce the bug?
test.mjs
import util from 'util';
import * as m from './test.mjs';
console.log(util.inspect(m, { showHidden: true }));
How often does it reproduce? Is there a required condition?
Always
What is the expected behavior?
[Module] { [Symbol(Symbol.toStringTag)]: 'Module' }
What do you see instead?
[] { [Symbol(Symbol.toStringTag)]: 'Module' }
Where the leading []
seems like a display bug.