What's wrong with this entry?
Anonymous. No account, no email.
Stream Module Updates
- Optimized
streamimport: Now imports onlyReadableas a named import instead of the entire stream module
// Before: import vR4 from "stream";
// After: import { Readable as qR4 } from "stream";
- Added
PassThroughstream utility: Introduced named import forPassThroughfromnode:stream
import { PassThrough as so1 } from "node:stream";
This suggests enhanced stream processing capabilities, potentially for piping data through transformations without modification.
Process Module Updates
- Optimized process import: Changed from default import to named import of
cwdfunction
// Before: import gb2 from "node:process";
// After: import { cwd as q00 } from "node:process";
This indicates the CLI only needs the current working directory functionality from the process module.
Related
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.