Current Path : /home/infinitibizsol/.trash/node_modules.10/escape-string-regexp/ |
Current File : /home/infinitibizsol/.trash/node_modules.10/escape-string-regexp/index.js |
'use strict'; const matchOperatorsRegex = /[|\\{}()[\]^$+*?.-]/g; module.exports = string => { if (typeof string !== 'string') { throw new TypeError('Expected a string'); } return string.replace(matchOperatorsRegex, '\\$&'); };