Create a stream/Readable that infinitely cycles over the items in an array or another, finite Readable. A lot like Python's itertools.cycle
One use case for this is to produce an infinite stream from an Array of mock objects so you can test downstream Writables.
var alternating = cycle([1,0]);
alternating.on('data', console.log);
// 1
// 0
// 1
// 0
// 1
// 0
make build
- willnpm install
andbower install
make dist
- will use r.js optimizer to compile the source, UMD wrap, and place that and source maps in dist/make clean
make server
- serve the repo over httpmake deploy [env={*prod,uat,qa}]
- Deploy to lfcdn, optionally specifying a bucket env