Hi, tested 3 css parsing libraries before this one. Brilliant and thanks!
Found small bug regarding css parse removing a semicolon..
This css:
"background-image: url('data:image/jpeg;base64,/9j/4AAQSkZ.."
Becomes:
"background-image: url('data:image/jpegbase64,/9j/4AAQSkZ.."
The fix:
Line 181 was:
ret[ret.length - 1].value += line.trim();
Should be: (note line is trimmed already above)
ret[ret.length - 1].value += ';'+line;//.trim();