Sign in
chromium
/
external
/
github.com
/
SeleniumHQ
/
selenium
/
refs/heads/api-docs-4.30.0-all
/
.
/
node_modules
/
dom-helpers
/
esm
/
camelize.js
blob: 610657581c30397045d12e5ede641d59b06e6bf5 [
file
] [
log
] [
blame
] [
edit
]
var
rHyphen
=
/-(.)/
g
;
export
default
function
camelize
(
string
)
{
return
string
.
replace
(
rHyphen
,
function
(
_
,
chr
)
{
return
chr
.
toUpperCase
();
});
}