We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent 7765739 commit 7451fb5Copy full SHA for 7451fb5
CHANGELOG.md
@@ -104,6 +104,8 @@
104
105
* Implicitly require `erb` from stdlib when including erb templates.
106
107
+* Fix `Regexp.escape` to also escape '(' character.
108
+
109
## 0.5.5 2013-11-25
110
111
* Fix regression: add `%i[foo bar]` style words back to lexer
opal/corelib/regexp.rb
@@ -2,7 +2,7 @@ class Regexp
2
`def._isRegexp = true`
3
4
def self.escape(string)
5
- `string.replace(/[\-\[\]\/\{\}\)\)\*\+\?\.\\\^\$| ]/g, '\\$&')`
+ `string.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$| ]/g, '\\$&')`
6
end
7
8
def self.union(*parts)
0 commit comments