tweb/src/helpers/string/escapeRegExp.ts
Eduard Kuzmenko 8317d3b566 misc
2022-03-25 01:16:03 +02:00

7 lines
228 B
TypeScript

// credits to https://github.com/sindresorhus/escape-string-regexp/blob/master/index.js
export default function escapeRegExp(str: string) {
return str
.replace(/[|\\{}()[\]^$+*?.]/g, '\\$&')
.replace(/-/g, '\\x2d');
}