File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
lib/node_modules/@stdlib/assert
is-empty-array-like-object/docs/types
is-empty-collection/docs/types Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 40
40
* var bool = isEmptyArrayLikeObject( '' );
41
41
* // returns false
42
42
*/
43
- declare function isEmptyArrayLikeObject ( value : any ) : value is ArrayLike < any > ;
43
+ declare function isEmptyArrayLikeObject ( value : any ) : boolean ;
44
44
45
45
46
46
// EXPORTS //
Original file line number Diff line number Diff line change 20
20
21
21
/// <reference types="@stdlib/types"/>
22
22
23
- import { Collection } from '@stdlib/types/array' ;
24
-
25
23
/**
26
24
* Tests if a value is an empty collection.
27
25
*
@@ -44,7 +42,7 @@ import { Collection } from '@stdlib/types/array';
44
42
* var bool = isEmptyCollection( {} );
45
43
* // returns false
46
44
*/
47
- declare function isEmptyCollection ( value : any ) : value is Collection ;
45
+ declare function isEmptyCollection ( value : any ) : boolean ;
48
46
49
47
50
48
// EXPORTS //
You can’t perform that action at this time.
0 commit comments