Skip to content

Instantly share code, notes, and snippets.

View RamonL's full-sized avatar

Ramon Lopez RamonL

  • Survey Sampling International
  • Encino, CA
View GitHub Profile
var through = require('through2');
var tr = through(write, end);
function write(buf, encoding, next){
setTimeOut(() => {
this.push(buf.toString().toUpperCase());
next();
}, 10000)
}