UNPKG

dashp

Version:

Utilities for monadic promises.

9 lines (7 loc) 155 B
import {of} from "./Future"; import {curry3} from "./internal/curry"; export default curry3("compose", (f, g, x) => of(x) .then(f) .then(g), );