Skip to content

Commit 5a14d13

Browse files
committedJan 27, 2014
Cleanup Regexp.escape
1 parent 64e0455 commit 5a14d13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎opal/corelib/regexp.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ class Regexp
44
class << self
55
def escape(string)
66
%x{
7-
return string.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$| ]/g, '\\$&')
7+
return string.replace(/([-[\]/{}()*+?.^$\\| ])/g, '\\$1')
88
.replace(/[\n]/g, '\\n')
99
.replace(/[\r]/g, '\\r')
1010
.replace(/[\f]/g, '\\f')

0 commit comments

Comments
 (0)