this repo has no description
at main 263 B view raw
1import { Transform } from 'node:stream' 2 3const upperCaseTr = new Transform({ 4 transform(chunk, encoding, callback) { 5 this.push(chunk.toString().toUpperCase()) 6 callback() 7 } 8}) 9 10process.stding 11 .pipe(upperCaseTr) 12 .pipe(process.stdout)