Regex, aby uciec przed znakami specjalnymi

function escapeRegExp(text) {
  return text.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&');
}
Gifted Gorilla