UNPKG

pelias-leaflet-plugin

Version:

Add Pelias geocoding to your Leaflet map.

10 lines (8 loc) 268 B
/* * 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;