rsnext/packages/next/shared/lib/escape-regexp.ts
JJ Kasper 4d307716f7
Fix issue with escape-string-regexp in IE11 (#32708)
* Fix issue with escape-string-regexp in IE11

* remove escape-string-regexp dep

* Update compiled

* Link to original repo
2022-01-03 11:41:50 -06:00

4 lines
173 B
TypeScript

// regexp from https://github.com/sindresorhus/escape-string-regexp
export function escapeStringRegexp(str: string) {
return str.replace(/[|\\{}()[\]^$+*?.-]/g, '\\$&')
}