websanova / js-url

url() - A simple, lightweight url parser for JavaScript
http://www.websanova.com
MIT License
1.93k stars 204 forks source link

alternate URI schemes #33

Closed thedamon closed 9 years ago

thedamon commented 9 years ago

I noticed that url('protocol', 'mailto:jim@flaubert.com') returns http.

Is there any way to detect for 'non-web' URI schemes? (not sure on the exact nomenclature)

websanova commented 9 years ago

Just added support for this in v2.0.0 release :-)

url('protocol', 'mailto:rob@websanova.com'); // mailto url('email', 'mailto:rob@websanova.com'); // rob@websanova.com