File tree 6 files changed +21
-0
lines changed
6 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,10 @@ rules:
38
38
- name : Boolean
39
39
- name : DataView
40
40
- name : Date
41
+ - name : decodeURI
42
+ - name : decodeURIComponent
43
+ - name : encodeURI
44
+ - name : encodeURIComponent
41
45
- name : Error
42
46
ignore :
43
47
- prepareStackTrace
Original file line number Diff line number Diff line change @@ -107,6 +107,10 @@ const {
107
107
WeakMapPrototype,
108
108
WeakSet,
109
109
WeakSetPrototype,
110
+ decodeURI,
111
+ decodeURIComponent,
112
+ encodeURI,
113
+ encodeURIComponent,
110
114
} = primordials ;
111
115
112
116
module . exports = function ( ) {
Original file line number Diff line number Diff line change @@ -173,6 +173,16 @@ primordials.SafeWeakSet = makeSafe(
173
173
}
174
174
) ;
175
175
176
+ // Create copies of URI handling functions
177
+ [
178
+ decodeURI ,
179
+ decodeURIComponent ,
180
+ encodeURI ,
181
+ encodeURIComponent ,
182
+ ] . forEach ( ( fn ) => {
183
+ primordials [ fn . name ] = fn ;
184
+ } ) ;
185
+
176
186
// Create copies of the namespace objects
177
187
[
178
188
'JSON' ,
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ const {
30
30
Symbol,
31
31
SymbolIterator,
32
32
SymbolToStringTag,
33
+ decodeURIComponent,
33
34
} = primordials ;
34
35
35
36
const { inspect } = require ( 'internal/util/inspect' ) ;
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ const {
34
34
String,
35
35
StringPrototypeCharCodeAt,
36
36
StringPrototypeSlice,
37
+ decodeURIComponent,
37
38
} = primordials ;
38
39
39
40
const { Buffer } = require ( 'buffer' ) ;
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ const {
27
27
ObjectKeys,
28
28
SafeSet,
29
29
StringPrototypeCharCodeAt,
30
+ decodeURIComponent,
30
31
} = primordials ;
31
32
32
33
const { toASCII } = require ( 'internal/idna' ) ;
You can’t perform that action at this time.
0 commit comments