Index: src/uri.js |
diff --git a/src/uri.js b/src/uri.js |
index 123503b83bab4e4ef1b8ed33a72badba221e9017..3cc1fe4755816ba93293ed241d5e5d90e217ec90 100644 |
--- a/src/uri.js |
+++ b/src/uri.js |
@@ -403,14 +403,14 @@ function IsValidHex(s) { |
// ECMA-262 - B.2.1. |
-function URIEscape(str) { |
+function URIEscapeJS(str) { |
var s = ToString(str); |
return %URIEscape(s); |
} |
// ECMA-262 - B.2.2. |
-function URIUnescape(str) { |
+function URIUnescapeJS(str) { |
var s = ToString(str); |
return %URIUnescape(s); |
} |
@@ -424,8 +424,8 @@ function SetUpUri() { |
// Set up non-enumerable URI functions on the global object and set |
// their names. |
InstallFunctions(global, DONT_ENUM, $Array( |
- "escape", URIEscape, |
- "unescape", URIUnescape, |
+ "escape", URIEscapeJS, |
+ "unescape", URIUnescapeJS, |
"decodeURI", URIDecode, |
"decodeURIComponent", URIDecodeComponent, |
"encodeURI", URIEncode, |