Sign in
chromium
/
devtools
/
devtools-frontend
/
refs/heads/main
/
.
/
node_modules
/
rambda
/
src
/
chain.js
blob: 11cb0307adc75dfba82c18ac634a57369d2bf78e [
file
] [
log
] [
blame
] [
edit
]
export
function
chain
(
fn
,
list
){
if
(
arguments
.
length
===
1
){
return
_list
=>
chain
(
fn
,
_list
)
}
return
[].
concat
(...
list
.
map
(
fn
))
}