UNPKG
arity-n
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Wraps a function with a function of a sertain arity.
github.com/stoeffel/arityN
stoeffel/arityN
arity-n
/
4.js
6 lines
(5 loc)
•
110 B
JavaScript
View Raw
1
2
3
4
5
6
module
.
exports
=
function
(
fn
) {
return
function
(
a, b, c, d
) {
return
fn.
apply
(
null
,
arguments
); }; };