Closed
Description
Affected URL(s)
https://nodejs.org/api/process.html#processreport
Description of the problem
import { report } from 'process';
console.log(`Reports are compact? ${report.compact}`);
yields:
import { report } from 'process';
^^^^^^
SyntaxError: The requested module 'process' does not provide an export named 'report'
The process module seems not to be fully esm ready?
node --version
v17.4.0