Sign in
chromium
/
devtools
/
devtools-frontend
/
refs/heads/main
/
.
/
node_modules
/
rambda
/
src
/
_internals
/
createPath.js
blob: bbe284e3f77cfd7a231c93a1f538e9afcad62497 [
file
] [
log
] [
blame
] [
edit
]
export
function
createPath
(
path
,
delimiter
=
'.'
){
return
typeof
path
===
'string'
?
path
.
split
(
delimiter
)
:
path
}