const mystream = new stream.Writable({
  objectMode: true,
  write(chunk, _, next) {
    next();
  },
  final(done) {
    done();
  }
});