UNPKG
@iterable-iterator/map
Version:
latest (1.0.1)
1.0.1
1.0.0
0.1.0
0.0.1
0.0.0
Iterable mapping functions for JavaScript
iterable-iterator.github.io/map
iterable-iterator/map
@iterable-iterator/map
/
dist
/
index.modern.js
3 lines
(2 loc)
•
217 B
JavaScript
View Raw
1
2
3
function
*
o
(
o,f
){
for
(
const
n
of
f)
yield
o
(n)}
function
*
f
(
o,f
){
for
(
const
n
of
f)
yield
o[n]}
function
*
n
(
o,f
){
for
(
const
n
of
f)
yield
o
(...n)}
export
{o
as
map,f
as
pick,n
as
starmap};
//# sourceMappingURL=index.modern.js.map