One of the more powerful functions for creating streams in MostJS is the from
function.
In this lesson, we use from
to create streams from various Javascript Iterables, take a look at how to throw generator functions into the mix and, for good measure, take a sneak peek at how we can limit our streams using a function called take
.
As a bonus, we see what it looks like to use Function.prototype.bind
for a quick and dirty way to partially apply arguments to a function.