the regex `lastIndex` bug seems to persist although _es5shim_ is included. ``` js 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.