Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

javascript RFC 3986 implementation? [closed]

Is there already a javascript function/library/snippet written for the validation of the RFC 1738 URL specifications listed at http://www.ietf.org/rfc/rfc3986.txt?

like image 954
Tingting Avatar asked Jul 06 '11 14:07

Tingting


1 Answers

From http://code.google.com/p/google-caja/source/browse/trunk/src/com/google/caja/plugin/uri.js

Implements RFC 3986 for parsing/formatting URIs.

You can find usage examples in the unit tests.

like image 60
Mike Samuel Avatar answered Nov 15 '22 16:11

Mike Samuel