Open
Description
opened on Jun 13, 2016
the regex lastIndex
bug seems to persist although es5shim is included.
var empty = ''
var re = /.*/g
re.exec(empty)
re.lastIndex === 0 // false in IE6
I've seen this is being worked around to patch String#replace but RegExp#exec is none the wiser.
Activity