UNPKG
foop
Version:
beta (5.0.0)
latest (5.0.0)
5.0.0
interfaces that describe their intentions.
github.com/fluents/chain-able
fluents/chain-able
foop
/
deps
/
loop
/
flipped
/
mapArrayFlipped.js
7 lines
(5 loc)
•
190 B
JavaScript
View Raw
1
2
3
4
5
6
7
const
mapArray
=
require
(
'../map/mapArray'
)
const
flip2
=
require
(
'../../fp/flip2'
) module.exports =
function
mapArrayFlipped
(
array
, iteratee
)
{
return
mapArray
(
array
,
flip2
(iteratee)) }