LeaVerou / prefixfree

Break free from CSS prefix hell!
http://projects.verou.me/prefixfree/
MIT License
3.83k stars 712 forks source link

Typo...? #195

Closed ghost closed 10 years ago

ghost commented 10 years ago

The following section of the prefix free script I just downloaded appears to have a typo; the pipe toward the end is wrapped with one double quote, and one single. Was this a typo or on purpose?

if(i){n=n.replace(/url(\s*?((?:"|')?)

LeaVerou commented 10 years ago

It's not a pipe wrapped in quotes, it’s a lookahead that matches either the single or the double quote. The pipe in regex means OR.