mattzeunert / FromJS

See where each character on the screen came from in code.

Home Page:http://www.fromjs.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

`var s= "abbc";var r = /(b)*/g;s.match(r)` causes infinite loop

mattzeunert opened this issue · comments

var s= "abbc"
var r = /(b)*/g
s.match(r)