UNPKG
util-arity
Version:
latest (1.1.0)
1.1.0
1.0.2
1.0.1
1.0.0
0.0.3
Set the length of a function.
github.com/blakeembrey/arity
blakeembrey/arity
util-arity
/
arity.d.ts
4 lines
(2 loc)
•
111 B
TypeScript
View Raw
1
2
3
4
declare
function
arity
(
arity
:
number
,
fn
: (...args:
any
[]) =>
any
):
(
...
args
:
any
[]
) =>
any
;
export
= arity;