UNPKG
nice-grpc-web
Version:
latest (3.3.10)
3.3.10
3.3.9
3.3.8
3.3.7
3.3.6
3.3.5
3.3.4
3.3.3
3.3.2
3.3.1
3.3.0
3.2.4
3.2.3
3.2.2
3.2.1
3.2.0
3.1.1
3.1.0
3.0.0
2.0.2
2.0.1
2.0.0
1.1.0
1.0.8
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
A Browser gRPC library that is nice to you
nice-grpc-web
/
src
/
utils
/
asyncIterableOf.ts
5 lines
(4 loc)
•
104 B
text/typescript
View Raw
1
2
3
4
5
/**
@internal
*/
export
async
function
* asyncIterableOf<T>(
item
: T):
AsyncIterable
<T> {
yield
item; }