From 5dd91b014711f0c305eb6b8963c6a59a14970b03 Mon Sep 17 00:00:00 2001 From: isaacs Date: Mon, 3 Jun 2013 16:02:51 -0700 Subject: [PATCH] url: Set href to null by default --- lib/url.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/url.js b/lib/url.js index db77238..fc8f77d 100644 --- a/lib/url.js +++ b/lib/url.js @@ -40,6 +40,7 @@ function Url() { this.query = null; this.pathname = null; this.path = null; + this.href = null; } // Reference: RFC 3986, RFC 1808, RFC 2396 -- 2.7.4