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