From: isaacs Date: Mon, 3 Jun 2013 23:02:51 +0000 (-0700) Subject: url: Set href to null by default X-Git-Tag: v0.10.10~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5dd91b014711f0c305eb6b8963c6a59a14970b03;p=platform%2Fupstream%2Fnodejs.git url: Set href to null by default --- 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