Closed gilbox closed 9 years ago
First of all, really cool plugin. Thanks!
I noticed this fails:
var a = /^foo/;
... it complains about the ^
^
but this works:
var a = (/^foo/);
and so does this:
/^foo/
I'm hitting this now too.
also happen in PHP source:
if (! preg_match('/^[RK]_.{16}\.pdf$/', $name)) {
fixed in 0.9.1
First of all, really cool plugin. Thanks!
I noticed this fails:
... it complains about the
^
but this works:
and so does this: