Preparing search index...
The search index is not available
Documentation
Documentation
it-map
default
Function default
default
<
I
,
O
>
(
source
,
func
)
:
AsyncGenerator
<
O
,
void
,
undefined
>
Takes an (async) iterable and returns one with each item mapped by the passed function
Type Parameters
I
O
Parameters
source
:
Iterable
<
I
>
func
:
(
(
val
,
index
)
=>
Promise
<
O
>
)
(
val
,
index
)
:
Promise
<
O
>
Parameters
val
:
I
index
:
number
Returns
Promise
<
O
>
Returns
AsyncGenerator
<
O
,
void
,
undefined
>
default
<
I
,
O
>
(
source
,
func
)
:
Generator
<
O
,
void
,
undefined
>
Type Parameters
I
O
Parameters
source
:
Iterable
<
I
>
func
:
(
(
val
,
index
)
=>
O
)
(
val
,
index
)
:
O
Parameters
val
:
I
index
:
number
Returns
O
Returns
Generator
<
O
,
void
,
undefined
>
default
<
I
,
O
>
(
source
,
func
)
:
AsyncGenerator
<
O
,
void
,
undefined
>
Type Parameters
I
O
Parameters
source
:
AsyncIterable
<
I
>
|
Iterable
<
I
>
func
:
(
(
val
,
index
)
=>
O
|
Promise
<
O
>
)
(
val
,
index
)
:
O
|
Promise
<
O
>
Parameters
val
:
I
index
:
number
Returns
O
|
Promise
<
O
>
Returns
AsyncGenerator
<
O
,
void
,
undefined
>
Settings
Member Visibility
Protected
Private
Inherited
External
Theme
OS
Light
Dark
Documentation
Loading...
Takes an (async) iterable and returns one with each item mapped by the passed function