Skip to content

Instantly share code, notes, and snippets.

@mohayonao
Created May 7, 2016 21:33
Show Gist options
  • Select an option

  • Save mohayonao/e26e17c84992186a5ae4d494e8ba390e to your computer and use it in GitHub Desktop.

Select an option

Save mohayonao/e26e17c84992186a5ae4d494e8ba390e to your computer and use it in GitHub Desktop.
"use strict";
const through = require("through");
module.exports = through(function(data) {
Array.from(data).forEach((ch) => { this.queue(ch); });
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment