url: Set href to null by default

This commit is contained in:
isaacs 2013-06-03 16:02:51 -07:00
parent 5dc51d4e21
commit 5dd91b0147

View File

@ -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