UNPKG
@prelude/function
Version:
latest (0.4.1)
0.4.1
0.4.0
0.3.0
0.2.0
0.1.0
0.0.3
Function module.
@prelude/function
/
mjs
/
inc.js
4 lines
•
175 B
JavaScript
View Raw
1
2
3
4
/**
@returns
function incrementing number by specified value (default 1). */
const
inc
= (
by =
1
) =>
(
value
) =>
value + by;
export
default
inc;
//# sourceMappingURL=inc.js.map