UNPKG

moy-fp

Version:
11 lines (8 loc) 158 B
import curry from '../Function/curry' /** * Number -> Number -> Number */ const divide = curry( (b, a) => Number(a) / Number(b) ) export default divide