UNPKG

chunk-promise

Version:
6 lines (3 loc) 127 B
const identity = (f) => f(); const compose = (f) => (g) => (x) => f(g(x)); exports = module.exports = { identity, compose };