made with esnextbin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { tap, take, skip, concat, fromArray, runEffects } from '../packages/core/src/index' | |
import { newDefaultScheduler } from '../packages/scheduler/src/index' | |
import { EventEmitter } from 'events' | |
import multicastStream from '@most/multicast' | |
import { fromEvent } from 'most' | |
const emitter = new EventEmitter() | |
const scheduler = newDefaultScheduler() | |
const observe = (f, stream) => runEffects(tap(f, stream), scheduler) |
made with esnextbin
made with esnextbin
made with esnextbin
made with esnextbin
made with esnextbin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { readFile } from 'fs' | |
// Create a stream-returning version of fs.readFile | |
const readFileS = fromNode(readFile) | |
// Use it to create a stream containing the files contents | |
// map(String) to convert Buffer to string | |
const s = readFileS('./a/file.txt').map(String) | |
// Observe the contents |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function * empty() {} | |
function * cons (a, stream) { | |
yield a | |
yield * stream | |
} | |
function * concat (xs, ys) { | |
yield * xs | |
yield * ys |
made with esnextbin