0.1.0 • Published 7 years ago

aa-util v0.1.0

Weekly downloads
9
License
ISC
Repository
github
Last release
7 years ago

Async-await utility with stream

npm i aa-util

example

const au = require('aa-util')

// Type Array -> Stream

function *main(){
	const target = [0,1,2,3,4,5]
	const stream = yield au.stream.a2s(target);

	// pipe your custom stream
	stream.pipe(stream_A)

	// get stream result
	const result = yield au.stream.reduce(stream_A);
}


// Type Generator -> Stream

function *main(){
	const target = [0,1,2,3,4,5]
	const g = function *(){
		yield* target
	}
	const stream = yield au.stream.g2s(g());
	const result = yield au.stream.reduce(stream);
}
0.1.0

7 years ago

0.0.1

8 years ago