UNPKG

@prelude/function

Version:

Function module.

4 lines 175 B
/** @returns function incrementing number by specified value (default 1). */ const inc = (by = 1) => (value) => value + by; export default inc; //# sourceMappingURL=inc.js.map