Skip to content

Instantly share code, notes, and snippets.

@zelbov
Created June 24, 2020 17:02
Show Gist options
  • Save zelbov/305ce3a68882298b2f6afed97a6465f6 to your computer and use it in GitHub Desktop.
Save zelbov/305ce3a68882298b2f6afed97a6465f6 to your computer and use it in GitHub Desktop.
const concatRegex = (array: RegExp[]) => {
return new RegExp(
array.map(m => m.source).join(''),
array.map(m => m.flags).join('')
.split("").sort().join("").replace(/(.)(?=.*\1)/g, "")
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment