UNPKG
pelias-leaflet-plugin
Version:
latest (1.12.0)
1.12.0
1.11.0
1.10.0
Add Pelias geocoding to your Leaflet map.
github.com/pelias/leaflet-plugin
pelias/leaflet-plugin
pelias-leaflet-plugin
/
src
/
utils
/
escapeRegExp.js
10 lines
(8 loc)
•
268 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
/* * escaping a string for regex Utility function * from https://stackoverflow.com/questions/3446170/escape-string-for-use-in-javascript-regex */
function
escapeRegExp
(
str
) {
return
str.
replace
(
/[-[\]/{}()*+?.\\^$|]/g
,
'\\$&'
); }
module
.
exports
= escapeRegExp;