File tree Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -27,14 +27,6 @@ function createResolvablePromiseObject<T>(): ResolvablePromiseObject<T> {
27
27
return { promise, resolver : resolver as ( ) => ( T ) } ;
28
28
}
29
29
30
- function isIterable ( iterable : any ) : boolean {
31
- return iterable && iterable [ Symbol . iterator ] && typeof iterable [ Symbol . iterator ] === "function" ;
32
- }
33
-
34
- function isAsyncIterable ( iterable : any ) : boolean {
35
- return iterable && iterable [ Symbol . asyncIterator ] && typeof iterable [ Symbol . asyncIterator ] === "function" ;
36
- }
37
-
38
30
function isAsyncFunction ( func : any ) : boolean {
39
31
return func && func [ Symbol . toStringTag ] === "AsyncFunction" ;
40
32
}
@@ -50,8 +42,6 @@ function getId(prefix: string): string {
50
42
export {
51
43
trace ,
52
44
createResolvablePromiseObject ,
53
- isIterable ,
54
- isAsyncIterable ,
55
45
isAsyncFunction ,
56
46
isAsyncTransformHandler ,
57
47
getId
You can’t perform that action at this time.
0 commit comments