Skip to content

Instantly share code, notes, and snippets.

@stwilz
Created May 21, 2018 01:40
Show Gist options
  • Save stwilz/fa937aeabc67c2c831b435efbb486464 to your computer and use it in GitHub Desktop.
Save stwilz/fa937aeabc67c2c831b435efbb486464 to your computer and use it in GitHub Desktop.
export default class JSUtils {
regExpWithEscape (string) {
return new RegExp(string.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&'))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment