Sign in
chromium
/
external
/
github.com
/
SeleniumHQ
/
selenium
/
refs/heads/api-docs-4.30.0-all
/
.
/
node_modules
/
rambda
/
src
/
split.js
blob: 58796aa2862477e199aa661f6f0618add6ce5832 [
file
] [
log
] [
blame
] [
edit
]
export
function
split
(
separator
,
str
){
if
(
arguments
.
length
===
1
)
return
_str
=>
split
(
separator
,
_str
)
return
str
.
split
(
separator
)
}