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