What's wrong with this entry?
Anonymous. No account, no email.
Improved module imports for better performance and specificity:
- Stream module imports refined: Instead of importing entire
streamandnode:streammodules, the new version only imports the specificPassThroughclass that's needed:
// Before:
import qe0 from "node:stream";
import ZR9 from "stream";
// After:
import { PassThrough as KT6 } from "node:stream";
import { PassThrough as GY8 } from "stream";
- Process module import optimized: Changed from importing the entire
node:processmodule to only importing thecwdfunction:
// Before:
import rgB from "node:process";
// After:
import { cwd as Nt0 } from "node:process";
Related
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.