Sign in
chromium
/
devtools
/
devtools-frontend
/
5c5f0490558be49f7a776bf26c1952c56ab0e6c2
/
.
/
node_modules
/
escape-string-regexp
/
index.js
blob: 7834bf9b24c481efa379fc07679c2d8e3ba85247 [
file
]
'use strict'
;
var
matchOperatorsRe
=
/[|\\{}()[\]^$+*?.]/
g
;
module
.
exports
=
function
(
str
)
{
if
(
typeof
str
!==
'string'
)
{
throw
new
TypeError
(
'Expected a string'
);
}
return
str
.
replace
(
matchOperatorsRe
,
'\\$&'
);
};