Created
May 7, 2016 21:33
-
-
Save mohayonao/e26e17c84992186a5ae4d494e8ba390e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "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