Skip to content

Instantly share code, notes, and snippets.

@crimx
Last active April 5, 2018 07:57
Show Gist options
  • Save crimx/4a704c512ecdb9d8d56baf68e6110031 to your computer and use it in GitHub Desktop.
Save crimx/4a704c512ecdb9d8d56baf68e6110031 to your computer and use it in GitHub Desktop.
Thoughts on reactive implementation
function compose (...funcs) {
if (funcs.length <= 0) {
return x => x
}
if (funcs.length === 1) {
return funcs[0]
}
const innerFunc = funcs[funcs.length - 1]
const restFunc = funcs.slice(0, -1)
const reducer = (res, fn) => fn(res)
return function composed (...args) {
return restFunc.reduceRight(reducer, innerFunc(...args))
}
}
function curry (fn, ...args) {
return args.length === fn.length
? fn(...args)
: (...nextArgs) => curry(fn, ...args, ...nextArgs)
}
const map = curry(function (mapper, next, v) {
next(mapper(v))
})
const filter = curry(function (predicate, next, v) {
if (predicate(v)) {
next(v)
}
})
function interval (callback) {
let i = 0
setInterval(() => callback(i++), 1000)
}
function logNum (num) {
console.log(num)
}
const subscribe = compose(
map(x => x * 3),
filter(x => x <= 10)
)
interval(subscribe(logNum))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment