Index: src/uri.js |
diff --git a/src/uri.js b/src/uri.js |
index 8ba20ef6834dca743abfab7accf6692a285ad700..1f4b8b626241d7d1931243ffa7779eae4a66fe7e 100644 |
--- a/src/uri.js |
+++ b/src/uri.js |
@@ -5,7 +5,7 @@ |
// This file contains support for URI manipulations written in |
// JavaScript. |
-(function() { |
+(function(global, shared, exports) { |
"use strict"; |
@@ -40,7 +40,7 @@ function isAlphaNumeric(cc) { |
return false; |
} |
-//Lazily initialized. |
+// Lazily initialized. |
var hexCharCodeArray = 0; |
function URIAddEncodedOctetToBuffer(octet, result, index) { |
@@ -365,4 +365,4 @@ $installFunctions(global, DONT_ENUM, [ |
"encodeURIComponent", URIEncodeComponent |
]); |
-})(); |
+}) |