Created
December 18, 2014 00:04
-
-
Save dsummersl/539030897a5f41b3f2a1 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
readFile("some/file.txt").then(function(stream) { | |
stream | |
.pipe(es.split('\n')) | |
.map(function(data) { return data.substring(5); }); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
substring(), or whatever.