Skip to content

Instantly share code, notes, and snippets.

@dsummersl
Created December 18, 2014 00:04
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dsummersl/539030897a5f41b3f2a1 to your computer and use it in GitHub Desktop.
Save dsummersl/539030897a5f41b3f2a1 to your computer and use it in GitHub Desktop.
readFile("some/file.txt").then(function(stream) {
stream
.pipe(es.split('\n'))
.map(function(data) { return data.substring(5); });
});
@dsummersl
Copy link
Author

substring(), or whatever.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment