| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // This file contains support for URI manipulations written in | 5 // This file contains support for URI manipulations written in |
| 6 // JavaScript. | 6 // JavaScript. |
| 7 | 7 |
| 8 (function(global, utils) { | 8 (function(global, utils) { |
| 9 | 9 |
| 10 "use strict"; | 10 "use strict"; |
| (...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 utils.InstallFunctions(global, DONT_ENUM, [ | 365 utils.InstallFunctions(global, DONT_ENUM, [ |
| 366 "escape", URIEscapeJS, | 366 "escape", URIEscapeJS, |
| 367 "unescape", URIUnescapeJS, | 367 "unescape", URIUnescapeJS, |
| 368 "decodeURI", URIDecode, | 368 "decodeURI", URIDecode, |
| 369 "decodeURIComponent", URIDecodeComponent, | 369 "decodeURIComponent", URIDecodeComponent, |
| 370 "encodeURI", URIEncode, | 370 "encodeURI", URIEncode, |
| 371 "encodeURIComponent", URIEncodeComponent | 371 "encodeURIComponent", URIEncodeComponent |
| 372 ]); | 372 ]); |
| 373 | 373 |
| 374 }) | 374 }) |
| OLD | NEW |