Source code

Revision control

Copy as Markdown

Other Tools

var i=0;
function f() {
assertEq(/^[a-z0-9\.]+$/gi.test("Foo.Bar"), true);
i++;
if (i < 100)
f();
}
f();