summaryrefslogtreecommitdiff
path: root/lib/url.js
diff options
context:
space:
mode:
authorJoshaven Potter <yourtech@gmail.com>2010-10-06 23:05:23 -0400
committerRyan Dahl <ry@tinyclouds.org>2010-10-06 20:40:57 -0700
commit3d4e4d89099f1c08e586060961ed884e5f52301a (patch)
tree7d15462001773751a6831479f8faac8c1707590e /lib/url.js
parent9481bc1009765b24390239a1d7d88bebae5db731 (diff)
downloadandroid-node-v8-3d4e4d89099f1c08e586060961ed884e5f52301a.tar.gz
android-node-v8-3d4e4d89099f1c08e586060961ed884e5f52301a.tar.bz2
android-node-v8-3d4e4d89099f1c08e586060961ed884e5f52301a.zip
syntax fixes to pass jslint
Diffstat (limited to 'lib/url.js')
-rw-r--r--lib/url.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/url.js b/lib/url.js
index 45dea833b2..2a9a5cfd70 100644
--- a/lib/url.js
+++ b/lib/url.js
@@ -284,7 +284,7 @@ function urlResolveObject (source, relative) {
mustEndAbs = mustEndAbs || (source.host && srcPath.length);
- if (mustEndAbs && srcPath[0] !== "") srcPath.unshift("")
+ if (mustEndAbs && srcPath[0] !== "") srcPath.unshift("");
source.pathname = srcPath.join("/");