Sign in
chromium
/
devtools
/
devtools-frontend.git
/
HEAD
/
.
/
node_modules
/
rambda
/
src
/
split.js
blob: 58796aa2862477e199aa661f6f0618add6ce5832 [
file
] [
log
] [
blame
]
export
function
split
(
separator
,
str
){
if
(
arguments
.
length
===
1
)
return
_str
=>
split
(
separator
,
_str
)
return
str
.
split
(
separator
)
}