File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ Joey Reed <joeyrreed@gmail.com>
1616Jordan-Gallivan <115050475+Jordan-Gallivan@users.noreply.github.com>
1717Joris Labie <joris.labie1@gmail.com>
1818Justin Dennison <justin1dennison@gmail.com>
19+ KATTA NAGA NITHIN <88046362+nithinkatta@users.noreply.github.com>
1920Marcus <mfantham@users.noreply.github.com>
2021Matt Cochrane <matthew.cochrane.eng@gmail.com>
2122Milan Raj <rajsite@users.noreply.github.com>
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ interface IsNonNegativeNumberArray {
3636 * var bool = isNonNegativeNumberArray( [ 3.0, '3.0' ] );
3737 * // returns false
3838 */
39- ( value : any ) : boolean ;
39+ ( value : any ) : value is ArrayLike < number | Number > ;
4040
4141 /**
4242 * Tests if a value is an array-like object containing only nonnegative primitive number values.
@@ -52,7 +52,7 @@ interface IsNonNegativeNumberArray {
5252 * var bool = isNonNegativeNumberArray.primitives( [ 3.0, new Number(1.0) ] );
5353 * // returns false
5454 */
55- primitives ( value : any ) : boolean ;
55+ primitives ( value : any ) : value is ArrayLike < number > ;
5656
5757 /**
5858 * Tests if a value is an array-like object containing only number objects having nonnegative number values.
@@ -68,7 +68,7 @@ interface IsNonNegativeNumberArray {
6868 * var bool = isNonNegativeNumberArray.objects( [ 1.0, 0.0, 10.0 ] );
6969 * // returns false
7070 */
71- objects ( value : any ) : boolean ;
71+ objects ( value : any ) : value is ArrayLike < Number > ;
7272}
7373
7474/**
You can’t perform that action at this time.
0 commit comments