File tree Expand file tree Collapse file tree
lib/node_modules/@stdlib/utils Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ type Closure = ( v: any ) => any;
5050* var sum = f( 2 )( 3 );
5151* // returns 5
5252*/
53- declare function curryRight ( fcn : Function , arity ? : number , thisArg ?: any ) : Closure ; // tslint-disable-line max-line-length
53+ declare function curryRight ( fcn : Function , arity : number , thisArg ?: any ) : Closure ; // tslint-disable-line max-line-length
5454
5555/**
5656* Transforms a function into a sequence of functions each accepting a single argument.
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ type Closure = ( v: any ) => any;
4949* var sum = f( 2 )( 3 );
5050* // returns 5
5151*/
52- declare function curry ( fcn : Function , arity ? : number , thisArg ?: any ) : Closure ;
52+ declare function curry ( fcn : Function , arity : number , thisArg ?: any ) : Closure ;
5353
5454/**
5555* Transforms a function into a sequence of functions each accepting a single argument.
You can’t perform that action at this time.
0 commit comments