1.0.1 • Published 7 years ago

node-passthrough v1.0.1

Weekly downloads
1
License
MIT
Repository
-
Last release
7 years ago

Manipulate stdout streams. Use x as the current data packet.

useful functions:

buffer(condition, act)

condition: function, return a boolean when the passed in array (called the buffer) matches your condition

act: what to do with the array (called the buffer) when the condition is met. the buffer is cleared afterwards.

example: add a second newline after every newline: npt "buffer(_ => x == '\n', _ => _.join('') + '\n' )"

P.S, I know this readme sucks