UNPKG

moy-fp

Version:
14 lines (11 loc) 142 B
import curry from './curry' /** * (a -> *) -> a -> a */ const tap = curry( (fn, x) => { fn(x) return x } ) export default tap