Core functions using Transform for usage in stream pipes.
Depends only on the stream library, ported straight from node.js core.
import { map } from 'stream-function'
somestream.pipe(map(somefunction))
import { filter } from 'stream-function'
somestream.pipe(filter(somefunction))
import { flatten } from 'stream-function'
somestream.pipe(flatten())
import { buffer } from 'stream-function'
somestream.pipe(buffer(buffersize))
import { promiseMap } from 'stream-function'
somestream.pipe(promiseMap(somepromisefunction))