Skip to content

Instantly share code, notes, and snippets.

@tusharmath
tusharmath / coprophagus.js
Last active June 14, 2016 22:30
Create coprophagus streams
const Rx = require('Rx')
const O = Rx.Observable
const R = require('ramda')
function SlimShady (signal$) {
return signal$
.delay(500).map((x) => x + 1)
}
const coprophagus = R.curry((funct, signal$) => {