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