File size: 164 Bytes
bc20498
 
 
 
 
1
2
3
4
5
6
var makeString = require('./makeString');

module.exports = function escapeRegExp(str) {
  return makeString(str).replace(/([.*+?^=!:${}()|[\]\/\\])/g, '\\$1');
};