Skip to content

Instantly share code, notes, and snippets.

View ttahmouch's full-sized avatar

Tony Tahmouch ttahmouch

View GitHub Profile
@ttahmouch
ttahmouch / uri.js
Last active August 29, 2015 14:04
RFC 3986 URI En/Decoding in Javascript (Node and Browser)
/**
* A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical
* resource.
* @example "http://www.google.com:80/search?query=text#result"
*
* @return {Uri}
* @constructor
*/
function Uri() {
return this;