Sign in
chromium
/
devtools
/
devtools-frontend
/
5dfb21679dc5d9affc8a50122a3e245ff69f1d08
/
.
/
node_modules
/
rambda
/
src
/
juxt.js
blob: b9bc2fc48a5f27f511d6b2cab492610bff5f5316 [
file
]
export
function
juxt
(
listOfFunctions
){
return
(...
args
)
=>
listOfFunctions
.
map
(
fn
=>
fn
(...
args
))
}