jscrewit 2.41.0 → 3.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Features.md +49 -182
- package/{readme.md → README.md} +32 -30
- package/api-doc/JScrewIt/namespaces/EncodeOptions/README.md +9 -0
- package/api-doc/{type-aliases → JScrewIt/namespaces/EncodeOptions/type-aliases}/RunAs.md +3 -2
- package/api-doc/README.md +5 -4
- package/api-doc/interfaces/CustomFeature.md +3 -3
- package/api-doc/interfaces/ElementaryFeature.md +2 -2
- package/api-doc/interfaces/{encode.md → EncodeInterface.md} +2 -2
- package/api-doc/interfaces/EncodeOptions.md +4 -4
- package/api-doc/interfaces/Feature.md +3 -3
- package/api-doc/interfaces/FeatureAll.md +75 -585
- package/api-doc/interfaces/FeatureConstructor.md +103 -824
- package/api-doc/interfaces/PredefinedFeature.md +2 -2
- package/api-doc/interfaces/default.md +1 -1
- package/api-doc/type-aliases/ElementaryFeatureName.md +1 -1
- package/api-doc/type-aliases/PredefinedFeatureName.md +1 -1
- package/lib/encode.d.ts +12 -10
- package/lib/feature-all.d.ts +91 -435
- package/lib/feature.d.ts +20 -22
- package/lib/jscrewit.d.ts +6 -6
- package/lib/jscrewit.js +776 -2447
- package/lib/jscrewit.min.js +2 -2
- package/package.json +6 -3
- package/screw.js +87 -103
- package/tools/cli.js +84 -158
- package/tools/time-utils.js +10 -26
- package/ui/ui.js +1 -1
- package/api-doc/variables/Feature.md +0 -7
- package/api-doc/variables/encode.md +0 -7
- package/tools/text-utils.js +0 -37
- /package/{license.txt → LICENSE.txt} +0 -0
|
@@ -30,18 +30,18 @@ If no arguments are specified, the new feature object will be equivalent to
|
|
|
30
30
|
## Example
|
|
31
31
|
|
|
32
32
|
The following statements are equivalent, and will all construct a new feature object
|
|
33
|
-
including both [\`
|
|
33
|
+
including both [\`DOCUMENT\`](#document) and [\`WINDOW\`](#window).
|
|
34
34
|
|
|
35
35
|
```js
|
|
36
|
-
new JScrewIt.Feature("
|
|
36
|
+
new JScrewIt.Feature("DOCUMENT", "WINDOW");
|
|
37
37
|
```
|
|
38
38
|
|
|
39
39
|
```js
|
|
40
|
-
new JScrewIt.Feature(JScrewIt.Feature.
|
|
40
|
+
new JScrewIt.Feature(JScrewIt.Feature.DOCUMENT, JScrewIt.Feature.WINDOW);
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
```js
|
|
44
|
-
new JScrewIt.Feature([JScrewIt.Feature.
|
|
44
|
+
new JScrewIt.Feature([JScrewIt.Feature.DOCUMENT, JScrewIt.Feature.WINDOW]);
|
|
45
45
|
```
|
|
46
46
|
|
|
47
47
|
## Throws
|
|
@@ -74,18 +74,18 @@ If no arguments are specified, the new feature object will be equivalent to
|
|
|
74
74
|
#### Example
|
|
75
75
|
|
|
76
76
|
The following statements are equivalent, and will all construct a new feature object
|
|
77
|
-
including both [\`
|
|
77
|
+
including both [\`DOCUMENT\`](#document) and [\`WINDOW\`](#window).
|
|
78
78
|
|
|
79
79
|
```js
|
|
80
|
-
JScrewIt.Feature("
|
|
80
|
+
JScrewIt.Feature("DOCUMENT", "WINDOW");
|
|
81
81
|
```
|
|
82
82
|
|
|
83
83
|
```js
|
|
84
|
-
JScrewIt.Feature(JScrewIt.Feature.
|
|
84
|
+
JScrewIt.Feature(JScrewIt.Feature.DOCUMENT, JScrewIt.Feature.WINDOW);
|
|
85
85
|
```
|
|
86
86
|
|
|
87
87
|
```js
|
|
88
|
-
JScrewIt.Feature([JScrewIt.Feature.
|
|
88
|
+
JScrewIt.Feature([JScrewIt.Feature.DOCUMENT, JScrewIt.Feature.WINDOW]);
|
|
89
89
|
```
|
|
90
90
|
|
|
91
91
|
#### Throws
|
|
@@ -120,83 +120,15 @@ featureObj === JScrewIt.Feature.ALL[featureObj.name]
|
|
|
120
120
|
|
|
121
121
|
***
|
|
122
122
|
|
|
123
|
-
### ANDRO\_4\_0
|
|
124
|
-
|
|
125
|
-
> **ANDRO\_4\_0**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
126
|
-
|
|
127
|
-
Features available in Android Browser 4.0.
|
|
128
|
-
|
|
129
|
-
#### Inherited from
|
|
130
|
-
|
|
131
|
-
[`FeatureAll`](FeatureAll.md).[`ANDRO_4_0`](FeatureAll.md#andro_4_0)
|
|
132
|
-
|
|
133
|
-
***
|
|
134
|
-
|
|
135
|
-
### ANDRO\_4\_1
|
|
136
|
-
|
|
137
|
-
> **ANDRO\_4\_1**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
138
|
-
|
|
139
|
-
Features available in Android Browser 4.1 to 4.3.
|
|
140
|
-
|
|
141
|
-
#### Inherited from
|
|
142
|
-
|
|
143
|
-
[`FeatureAll`](FeatureAll.md).[`ANDRO_4_1`](FeatureAll.md#andro_4_1)
|
|
144
|
-
|
|
145
|
-
***
|
|
146
|
-
|
|
147
|
-
### ANDRO\_4\_4
|
|
148
|
-
|
|
149
|
-
> **ANDRO\_4\_4**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
150
|
-
|
|
151
|
-
Features available in Android Browser 4.4.
|
|
152
|
-
|
|
153
|
-
#### Inherited from
|
|
154
|
-
|
|
155
|
-
[`FeatureAll`](FeatureAll.md).[`ANDRO_4_4`](FeatureAll.md#andro_4_4)
|
|
156
|
-
|
|
157
|
-
***
|
|
158
|
-
|
|
159
|
-
### ANY\_DOCUMENT
|
|
160
|
-
|
|
161
|
-
> **ANY\_DOCUMENT**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
162
|
-
|
|
163
|
-
Existence of the global object document whose string representation starts with "\[object " and ends with "Document\]".
|
|
164
|
-
|
|
165
|
-
#### Remarks
|
|
166
|
-
|
|
167
|
-
Available in Chrome, Edge, Firefox, Internet Explorer, Safari, Opera, and Android Browser. This feature is not available inside web workers.
|
|
168
|
-
|
|
169
|
-
#### Inherited from
|
|
170
|
-
|
|
171
|
-
[`FeatureAll`](FeatureAll.md).[`ANY_DOCUMENT`](FeatureAll.md#any_document)
|
|
172
|
-
|
|
173
|
-
***
|
|
174
|
-
|
|
175
|
-
### ANY\_WINDOW
|
|
176
|
-
|
|
177
|
-
> **ANY\_WINDOW**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
178
|
-
|
|
179
|
-
Existence of the global object self whose string representation starts with "\[object " and ends with "Window\]".
|
|
180
|
-
|
|
181
|
-
#### Remarks
|
|
182
|
-
|
|
183
|
-
Available in Chrome, Edge, Firefox, Internet Explorer, Safari, Opera, and Android Browser. This feature is not available inside web workers.
|
|
184
|
-
|
|
185
|
-
#### Inherited from
|
|
186
|
-
|
|
187
|
-
[`FeatureAll`](FeatureAll.md).[`ANY_WINDOW`](FeatureAll.md#any_window)
|
|
188
|
-
|
|
189
|
-
***
|
|
190
|
-
|
|
191
123
|
### ARRAY\_ITERATOR
|
|
192
124
|
|
|
193
125
|
> **ARRAY\_ITERATOR**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
194
126
|
|
|
195
|
-
The property that the string representation of Array.prototype.entries\(\)
|
|
127
|
+
The property that the string representation of Array.prototype.entries\(\) evaluates to "\[object Array Iterator\]".
|
|
196
128
|
|
|
197
129
|
#### Remarks
|
|
198
130
|
|
|
199
|
-
Available in Chrome, Edge, Firefox, Safari
|
|
131
|
+
Available in Chrome, Edge, Firefox, Safari, Opera, and Node.js.
|
|
200
132
|
|
|
201
133
|
#### Inherited from
|
|
202
134
|
|
|
@@ -212,7 +144,7 @@ Support for arrow functions.
|
|
|
212
144
|
|
|
213
145
|
#### Remarks
|
|
214
146
|
|
|
215
|
-
Available in Chrome, Edge, Firefox, Safari
|
|
147
|
+
Available in Chrome, Edge, Firefox, Safari, Opera, and Node.js.
|
|
216
148
|
|
|
217
149
|
#### Inherited from
|
|
218
150
|
|
|
@@ -220,31 +152,15 @@ Available in Chrome, Edge, Firefox, Safari 10.0+, Opera, and Node.js 4+.
|
|
|
220
152
|
|
|
221
153
|
***
|
|
222
154
|
|
|
223
|
-
### ASYNC\_FUNCTION
|
|
224
|
-
|
|
225
|
-
> **ASYNC\_FUNCTION**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
226
|
-
|
|
227
|
-
Support for async functions, which return Promise object.
|
|
228
|
-
|
|
229
|
-
#### Remarks
|
|
230
|
-
|
|
231
|
-
Available in Chrome, Edge, Firefox, Safari 10.1+, Opera, and Node.js 7.6+.
|
|
232
|
-
|
|
233
|
-
#### Inherited from
|
|
234
|
-
|
|
235
|
-
[`FeatureAll`](FeatureAll.md).[`ASYNC_FUNCTION`](FeatureAll.md#async_function)
|
|
236
|
-
|
|
237
|
-
***
|
|
238
|
-
|
|
239
155
|
### AT
|
|
240
156
|
|
|
241
157
|
> **AT**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
242
158
|
|
|
243
|
-
Existence of the native
|
|
159
|
+
Existence of the native functions Array.prototype.at and String.prototype.at.
|
|
244
160
|
|
|
245
161
|
#### Remarks
|
|
246
162
|
|
|
247
|
-
Available in Chrome, Edge, Firefox, Safari
|
|
163
|
+
Available in Chrome, Edge, Firefox, Safari, Opera, and Node.js.
|
|
248
164
|
|
|
249
165
|
#### Inherited from
|
|
250
166
|
|
|
@@ -252,22 +168,6 @@ Available in Chrome, Edge, Firefox, Safari 15.4+, Opera, and Node.js 16.6+.
|
|
|
252
168
|
|
|
253
169
|
***
|
|
254
170
|
|
|
255
|
-
### ATOB
|
|
256
|
-
|
|
257
|
-
> **ATOB**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
258
|
-
|
|
259
|
-
Existence of the global functions atob and btoa.
|
|
260
|
-
|
|
261
|
-
#### Remarks
|
|
262
|
-
|
|
263
|
-
Available in Chrome, Edge, Firefox, Internet Explorer 10+, Safari, Opera, Android Browser, and Node.js 16.0+. This feature is not available inside web workers in Safari before 10.0.
|
|
264
|
-
|
|
265
|
-
#### Inherited from
|
|
266
|
-
|
|
267
|
-
[`FeatureAll`](FeatureAll.md).[`ATOB`](FeatureAll.md#atob)
|
|
268
|
-
|
|
269
|
-
***
|
|
270
|
-
|
|
271
171
|
### AUTO
|
|
272
172
|
|
|
273
173
|
> **AUTO**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
@@ -288,7 +188,7 @@ Existence of the global object statusbar having the string representation "\[obj
|
|
|
288
188
|
|
|
289
189
|
#### Remarks
|
|
290
190
|
|
|
291
|
-
Available in Chrome, Edge, Firefox, Safari,
|
|
191
|
+
Available in Chrome, Edge, Firefox, Safari, and Opera. This feature is not available inside web workers.
|
|
292
192
|
|
|
293
193
|
#### Inherited from
|
|
294
194
|
|
|
@@ -310,22 +210,6 @@ No support for Node.js.
|
|
|
310
210
|
|
|
311
211
|
***
|
|
312
212
|
|
|
313
|
-
### CALL\_ON\_GLOBAL
|
|
314
|
-
|
|
315
|
-
> **CALL\_ON\_GLOBAL**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
316
|
-
|
|
317
|
-
The ability to call a function on the global object when invoking Function.prototype.call without binding.
|
|
318
|
-
|
|
319
|
-
#### Remarks
|
|
320
|
-
|
|
321
|
-
Available in Android Browser before 4.1.
|
|
322
|
-
|
|
323
|
-
#### Inherited from
|
|
324
|
-
|
|
325
|
-
[`FeatureAll`](FeatureAll.md).[`CALL_ON_GLOBAL`](FeatureAll.md#call_on_global)
|
|
326
|
-
|
|
327
|
-
***
|
|
328
|
-
|
|
329
213
|
### CAPITAL\_HTML
|
|
330
214
|
|
|
331
215
|
> **CAPITAL\_HTML**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
@@ -396,7 +280,7 @@ An alias for `CHROME_122`.
|
|
|
396
280
|
|
|
397
281
|
All new browsers' features.
|
|
398
282
|
|
|
399
|
-
|
|
283
|
+
Not compatible with Node.js, Internet Explorer, and old versions of supported browsers.
|
|
400
284
|
|
|
401
285
|
#### Inherited from
|
|
402
286
|
|
|
@@ -414,7 +298,7 @@ This feature may become unavailable when certain browser extensions are active.
|
|
|
414
298
|
|
|
415
299
|
#### Remarks
|
|
416
300
|
|
|
417
|
-
Available in Internet Explorer
|
|
301
|
+
Available in Internet Explorer.
|
|
418
302
|
|
|
419
303
|
#### Inherited from
|
|
420
304
|
|
|
@@ -422,20 +306,6 @@ Available in Internet Explorer 10+, Safari before 14.1, and Android Browser. Thi
|
|
|
422
306
|
|
|
423
307
|
***
|
|
424
308
|
|
|
425
|
-
### CREATE\_ELEMENT
|
|
426
|
-
|
|
427
|
-
> **CREATE\_ELEMENT**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
428
|
-
|
|
429
|
-
Existence of the function document.createElement.
|
|
430
|
-
|
|
431
|
-
An alias for `ANY_DOCUMENT`.
|
|
432
|
-
|
|
433
|
-
#### Inherited from
|
|
434
|
-
|
|
435
|
-
[`FeatureAll`](FeatureAll.md).[`CREATE_ELEMENT`](FeatureAll.md#create_element)
|
|
436
|
-
|
|
437
|
-
***
|
|
438
|
-
|
|
439
309
|
### DEFAULT
|
|
440
310
|
|
|
441
311
|
> **DEFAULT**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
@@ -452,11 +322,11 @@ Minimum feature level, compatible with all supported engines in all environments
|
|
|
452
322
|
|
|
453
323
|
> **DOCUMENT**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
454
324
|
|
|
455
|
-
Existence of the global object document
|
|
325
|
+
Existence of the global object document whose string representation starts with "\[object " and ends with "Document\]".
|
|
456
326
|
|
|
457
327
|
#### Remarks
|
|
458
328
|
|
|
459
|
-
Available in Internet Explorer
|
|
329
|
+
Available in Chrome, Edge, Firefox, Internet Explorer, Safari, and Opera. This feature is not available inside web workers.
|
|
460
330
|
|
|
461
331
|
#### Inherited from
|
|
462
332
|
|
|
@@ -464,22 +334,6 @@ Available in Internet Explorer before 11. This feature is not available inside w
|
|
|
464
334
|
|
|
465
335
|
***
|
|
466
336
|
|
|
467
|
-
### DOMWINDOW
|
|
468
|
-
|
|
469
|
-
> **DOMWINDOW**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
470
|
-
|
|
471
|
-
Existence of the global object self having the string representation "\[object DOMWindow\]".
|
|
472
|
-
|
|
473
|
-
#### Remarks
|
|
474
|
-
|
|
475
|
-
Available in Android Browser before 4.4. This feature is not available inside web workers.
|
|
476
|
-
|
|
477
|
-
#### Inherited from
|
|
478
|
-
|
|
479
|
-
[`FeatureAll`](FeatureAll.md).[`DOMWINDOW`](FeatureAll.md#domwindow)
|
|
480
|
-
|
|
481
|
-
***
|
|
482
|
-
|
|
483
337
|
### ELEMENTARY
|
|
484
338
|
|
|
485
339
|
> `readonly` **ELEMENTARY**: readonly [`ElementaryFeature`](ElementaryFeature.md)[]
|
|
@@ -488,22 +342,6 @@ An immutable array of all elementary feature objects ordered by name.
|
|
|
488
342
|
|
|
489
343
|
***
|
|
490
344
|
|
|
491
|
-
### ESC\_HTML\_ALL
|
|
492
|
-
|
|
493
|
-
> **ESC\_HTML\_ALL**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
494
|
-
|
|
495
|
-
The property that double quotation mark, less than and greater than characters in the argument of String.prototype.fontcolor are escaped into their respective HTML entities.
|
|
496
|
-
|
|
497
|
-
#### Remarks
|
|
498
|
-
|
|
499
|
-
Available in Android Browser and Node.js before 0.12.
|
|
500
|
-
|
|
501
|
-
#### Inherited from
|
|
502
|
-
|
|
503
|
-
[`FeatureAll`](FeatureAll.md).[`ESC_HTML_ALL`](FeatureAll.md#esc_html_all)
|
|
504
|
-
|
|
505
|
-
***
|
|
506
|
-
|
|
507
345
|
### ESC\_HTML\_QUOT
|
|
508
346
|
|
|
509
347
|
> **ESC\_HTML\_QUOT**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
@@ -512,7 +350,7 @@ The property that double quotation marks in the argument of String.prototype.fon
|
|
|
512
350
|
|
|
513
351
|
#### Remarks
|
|
514
352
|
|
|
515
|
-
Available in Chrome, Edge, Firefox, Safari, Opera,
|
|
353
|
+
Available in Chrome, Edge, Firefox, Safari, Opera, and Node.js.
|
|
516
354
|
|
|
517
355
|
#### Inherited from
|
|
518
356
|
|
|
@@ -520,54 +358,6 @@ Available in Chrome, Edge, Firefox, Safari, Opera, Android Browser, and Node.js.
|
|
|
520
358
|
|
|
521
359
|
***
|
|
522
360
|
|
|
523
|
-
### ESC\_HTML\_QUOT\_ONLY
|
|
524
|
-
|
|
525
|
-
> **ESC\_HTML\_QUOT\_ONLY**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
526
|
-
|
|
527
|
-
The property that only double quotation marks and no other characters in the argument of String.prototype.fontcolor are escaped into HTML entities.
|
|
528
|
-
|
|
529
|
-
#### Remarks
|
|
530
|
-
|
|
531
|
-
Available in Chrome, Edge, Firefox, Safari, Opera, and Node.js 0.12+.
|
|
532
|
-
|
|
533
|
-
#### Inherited from
|
|
534
|
-
|
|
535
|
-
[`FeatureAll`](FeatureAll.md).[`ESC_HTML_QUOT_ONLY`](FeatureAll.md#esc_html_quot_only)
|
|
536
|
-
|
|
537
|
-
***
|
|
538
|
-
|
|
539
|
-
### ESC\_REGEXP\_LF
|
|
540
|
-
|
|
541
|
-
> **ESC\_REGEXP\_LF**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
542
|
-
|
|
543
|
-
Having regular expressions created with the RegExp constructor use escape sequences starting with a backslash to format line feed characters \("\\n"\) in their string representation.
|
|
544
|
-
|
|
545
|
-
#### Remarks
|
|
546
|
-
|
|
547
|
-
Available in Chrome, Edge, Firefox, Internet Explorer, Safari, Opera, and Node.js 12+.
|
|
548
|
-
|
|
549
|
-
#### Inherited from
|
|
550
|
-
|
|
551
|
-
[`FeatureAll`](FeatureAll.md).[`ESC_REGEXP_LF`](FeatureAll.md#esc_regexp_lf)
|
|
552
|
-
|
|
553
|
-
***
|
|
554
|
-
|
|
555
|
-
### ESC\_REGEXP\_SLASH
|
|
556
|
-
|
|
557
|
-
> **ESC\_REGEXP\_SLASH**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
558
|
-
|
|
559
|
-
Having regular expressions created with the RegExp constructor use escape sequences starting with a backslash to format slashes \("/"\) in their string representation.
|
|
560
|
-
|
|
561
|
-
#### Remarks
|
|
562
|
-
|
|
563
|
-
Available in Chrome, Edge, Firefox, Internet Explorer, Safari, Opera, and Node.js 4+.
|
|
564
|
-
|
|
565
|
-
#### Inherited from
|
|
566
|
-
|
|
567
|
-
[`FeatureAll`](FeatureAll.md).[`ESC_REGEXP_SLASH`](FeatureAll.md#esc_regexp_slash)
|
|
568
|
-
|
|
569
|
-
***
|
|
570
|
-
|
|
571
361
|
### FF
|
|
572
362
|
|
|
573
363
|
> **FF**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
@@ -688,22 +478,6 @@ Available in Firefox and Safari.
|
|
|
688
478
|
|
|
689
479
|
***
|
|
690
480
|
|
|
691
|
-
### FILL
|
|
692
|
-
|
|
693
|
-
> **FILL**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
694
|
-
|
|
695
|
-
Existence of the native function Array.prototype.fill.
|
|
696
|
-
|
|
697
|
-
#### Remarks
|
|
698
|
-
|
|
699
|
-
Available in Chrome, Edge, Firefox, Safari 7.1+, Opera, and Node.js 4+.
|
|
700
|
-
|
|
701
|
-
#### Inherited from
|
|
702
|
-
|
|
703
|
-
[`FeatureAll`](FeatureAll.md).[`FILL`](FeatureAll.md#fill)
|
|
704
|
-
|
|
705
|
-
***
|
|
706
|
-
|
|
707
481
|
### FLAT
|
|
708
482
|
|
|
709
483
|
> **FLAT**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
@@ -712,7 +486,7 @@ Existence of the native function Array.prototype.flat.
|
|
|
712
486
|
|
|
713
487
|
#### Remarks
|
|
714
488
|
|
|
715
|
-
Available in Chrome, Edge, Firefox, Safari
|
|
489
|
+
Available in Chrome, Edge, Firefox, Safari, Opera, and Node.js.
|
|
716
490
|
|
|
717
491
|
#### Inherited from
|
|
718
492
|
|
|
@@ -720,20 +494,6 @@ Available in Chrome, Edge, Firefox, Safari 12+, Opera, and Node.js 11+.
|
|
|
720
494
|
|
|
721
495
|
***
|
|
722
496
|
|
|
723
|
-
### FORMS
|
|
724
|
-
|
|
725
|
-
> **FORMS**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
726
|
-
|
|
727
|
-
Existence of the object document.forms with string representation "\[object HTMLCollection\]".
|
|
728
|
-
|
|
729
|
-
An alias for `ANY_DOCUMENT`.
|
|
730
|
-
|
|
731
|
-
#### Inherited from
|
|
732
|
-
|
|
733
|
-
[`FeatureAll`](FeatureAll.md).[`FORMS`](FeatureAll.md#forms)
|
|
734
|
-
|
|
735
|
-
***
|
|
736
|
-
|
|
737
497
|
### FROM\_CODE\_POINT
|
|
738
498
|
|
|
739
499
|
> **FROM\_CODE\_POINT**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
@@ -742,7 +502,7 @@ Existence of the function String.fromCodePoint.
|
|
|
742
502
|
|
|
743
503
|
#### Remarks
|
|
744
504
|
|
|
745
|
-
Available in Chrome, Edge, Firefox, Safari
|
|
505
|
+
Available in Chrome, Edge, Firefox, Safari, Opera, and Node.js.
|
|
746
506
|
|
|
747
507
|
#### Inherited from
|
|
748
508
|
|
|
@@ -758,7 +518,7 @@ A string representation of dynamically generated functions where the character a
|
|
|
758
518
|
|
|
759
519
|
#### Remarks
|
|
760
520
|
|
|
761
|
-
Available in Chrome, Edge, Firefox, Safari
|
|
521
|
+
Available in Chrome, Edge, Firefox, Safari, Opera, and Node.js.
|
|
762
522
|
|
|
763
523
|
#### Inherited from
|
|
764
524
|
|
|
@@ -774,7 +534,7 @@ A string representation of dynamically generated functions where the character a
|
|
|
774
534
|
|
|
775
535
|
#### Remarks
|
|
776
536
|
|
|
777
|
-
Available in Internet Explorer
|
|
537
|
+
Available in Internet Explorer.
|
|
778
538
|
|
|
779
539
|
#### Inherited from
|
|
780
540
|
|
|
@@ -782,100 +542,6 @@ Available in Internet Explorer, Safari 9+ before 17.4, Android Browser, and Node
|
|
|
782
542
|
|
|
783
543
|
***
|
|
784
544
|
|
|
785
|
-
### GENERIC\_ARRAY\_TO\_STRING
|
|
786
|
-
|
|
787
|
-
> **GENERIC\_ARRAY\_TO\_STRING**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
788
|
-
|
|
789
|
-
Ability to call Array.prototype.toString with a non-array binding.
|
|
790
|
-
|
|
791
|
-
#### Remarks
|
|
792
|
-
|
|
793
|
-
Available in Chrome, Edge, Firefox, Internet Explorer, Safari, Opera, Android Browser 4.1+, and Node.js.
|
|
794
|
-
|
|
795
|
-
#### Inherited from
|
|
796
|
-
|
|
797
|
-
[`FeatureAll`](FeatureAll.md).[`GENERIC_ARRAY_TO_STRING`](FeatureAll.md#generic_array_to_string)
|
|
798
|
-
|
|
799
|
-
***
|
|
800
|
-
|
|
801
|
-
### GLOBAL\_UNDEFINED
|
|
802
|
-
|
|
803
|
-
> **GLOBAL\_UNDEFINED**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
804
|
-
|
|
805
|
-
Having the global function toString return the string "\[object Undefined\]" when invoked without a binding.
|
|
806
|
-
|
|
807
|
-
#### Remarks
|
|
808
|
-
|
|
809
|
-
Available in Chrome, Edge, Firefox, Safari, Opera, and Node.js.
|
|
810
|
-
|
|
811
|
-
#### Inherited from
|
|
812
|
-
|
|
813
|
-
[`FeatureAll`](FeatureAll.md).[`GLOBAL_UNDEFINED`](FeatureAll.md#global_undefined)
|
|
814
|
-
|
|
815
|
-
***
|
|
816
|
-
|
|
817
|
-
### GMT
|
|
818
|
-
|
|
819
|
-
> **GMT**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
820
|
-
|
|
821
|
-
Presence of the text "GMT" after the first 25 characters in the string returned by Date\(\).
|
|
822
|
-
|
|
823
|
-
The string representation of dates is implementation dependent, but most engines use a similar format, making this feature available in all supported engines except Internet Explorer 9 and 10.
|
|
824
|
-
|
|
825
|
-
#### Remarks
|
|
826
|
-
|
|
827
|
-
Available in Chrome, Edge, Firefox, Internet Explorer 11, Safari, Opera, Android Browser, and Node.js.
|
|
828
|
-
|
|
829
|
-
#### Inherited from
|
|
830
|
-
|
|
831
|
-
[`FeatureAll`](FeatureAll.md).[`GMT`](FeatureAll.md#gmt)
|
|
832
|
-
|
|
833
|
-
***
|
|
834
|
-
|
|
835
|
-
### HISTORY
|
|
836
|
-
|
|
837
|
-
> **HISTORY**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
838
|
-
|
|
839
|
-
Existence of the global object history having the string representation "\[object History\]".
|
|
840
|
-
|
|
841
|
-
#### Remarks
|
|
842
|
-
|
|
843
|
-
Available in Chrome, Edge, Firefox, Internet Explorer, Safari, Opera, and Android Browser. This feature is not available inside web workers.
|
|
844
|
-
|
|
845
|
-
#### Inherited from
|
|
846
|
-
|
|
847
|
-
[`FeatureAll`](FeatureAll.md).[`HISTORY`](FeatureAll.md#history)
|
|
848
|
-
|
|
849
|
-
***
|
|
850
|
-
|
|
851
|
-
### HTMLAUDIOELEMENT
|
|
852
|
-
|
|
853
|
-
> **HTMLAUDIOELEMENT**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
854
|
-
|
|
855
|
-
Existence of the global object Audio whose string representation starts with "function HTMLAudioElement".
|
|
856
|
-
|
|
857
|
-
#### Remarks
|
|
858
|
-
|
|
859
|
-
Available in Android Browser 4.4. This feature is not available inside web workers.
|
|
860
|
-
|
|
861
|
-
#### Inherited from
|
|
862
|
-
|
|
863
|
-
[`FeatureAll`](FeatureAll.md).[`HTMLAUDIOELEMENT`](FeatureAll.md#htmlaudioelement)
|
|
864
|
-
|
|
865
|
-
***
|
|
866
|
-
|
|
867
|
-
### IE\_10
|
|
868
|
-
|
|
869
|
-
> **IE\_10**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
870
|
-
|
|
871
|
-
Features available in Internet Explorer 10.
|
|
872
|
-
|
|
873
|
-
#### Inherited from
|
|
874
|
-
|
|
875
|
-
[`FeatureAll`](FeatureAll.md).[`IE_10`](FeatureAll.md#ie_10)
|
|
876
|
-
|
|
877
|
-
***
|
|
878
|
-
|
|
879
545
|
### IE\_11
|
|
880
546
|
|
|
881
547
|
> **IE\_11**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
@@ -900,15 +566,15 @@ Features available in Internet Explorer 11 on Windows 10.
|
|
|
900
566
|
|
|
901
567
|
***
|
|
902
568
|
|
|
903
|
-
### IE\
|
|
569
|
+
### IE\_11\_WIN\_8
|
|
904
570
|
|
|
905
|
-
> **IE\
|
|
571
|
+
> **IE\_11\_WIN\_8**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
906
572
|
|
|
907
|
-
Features available in Internet Explorer
|
|
573
|
+
Features available in Internet Explorer 11 on Windows 8.
|
|
908
574
|
|
|
909
575
|
#### Inherited from
|
|
910
576
|
|
|
911
|
-
[`FeatureAll`](FeatureAll.md).[`
|
|
577
|
+
[`FeatureAll`](FeatureAll.md).[`IE_11_WIN_8`](FeatureAll.md#ie_11_win_8)
|
|
912
578
|
|
|
913
579
|
***
|
|
914
580
|
|
|
@@ -938,7 +604,7 @@ The ability to use unary increment operators with string characters, like in \(
|
|
|
938
604
|
|
|
939
605
|
#### Remarks
|
|
940
606
|
|
|
941
|
-
Available in Chrome, Edge, Firefox, Internet Explorer, Safari, Opera,
|
|
607
|
+
Available in Chrome, Edge, Firefox, Internet Explorer, Safari, Opera, and Node.js. This feature is not available when strict mode is enforced in Chrome, Edge, Firefox, Internet Explorer, Safari, Opera, and Node.js.
|
|
942
608
|
|
|
943
609
|
#### Inherited from
|
|
944
610
|
|
|
@@ -946,22 +612,6 @@ Available in Chrome, Edge, Firefox, Internet Explorer, Safari, Opera, Android Br
|
|
|
946
612
|
|
|
947
613
|
***
|
|
948
614
|
|
|
949
|
-
### INTL
|
|
950
|
-
|
|
951
|
-
> **INTL**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
952
|
-
|
|
953
|
-
Existence of the global object Intl.
|
|
954
|
-
|
|
955
|
-
#### Remarks
|
|
956
|
-
|
|
957
|
-
Available in Chrome, Edge, Firefox, Internet Explorer 11, Safari 10.0+, Opera, Android Browser 4.4, and Node.js 0.12+.
|
|
958
|
-
|
|
959
|
-
#### Inherited from
|
|
960
|
-
|
|
961
|
-
[`FeatureAll`](FeatureAll.md).[`INTL`](FeatureAll.md#intl)
|
|
962
|
-
|
|
963
|
-
***
|
|
964
|
-
|
|
965
615
|
### ITERATOR\_HELPER
|
|
966
616
|
|
|
967
617
|
> **ITERATOR\_HELPER**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
@@ -978,51 +628,19 @@ Available in Chrome, Edge, Firefox 131+, Safari 18.4+, Opera, and Node.js 22.0+.
|
|
|
978
628
|
|
|
979
629
|
***
|
|
980
630
|
|
|
981
|
-
###
|
|
631
|
+
### LOCALE\_INFINITY
|
|
982
632
|
|
|
983
|
-
> **
|
|
633
|
+
> **LOCALE\_INFINITY**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
984
634
|
|
|
985
|
-
|
|
635
|
+
Language sensitive string representation of Infinity as "∞".
|
|
986
636
|
|
|
987
637
|
#### Remarks
|
|
988
638
|
|
|
989
|
-
Available in Chrome, Edge, Firefox, Internet Explorer 11
|
|
639
|
+
Available in Chrome, Edge, Firefox, Internet Explorer 11 on Windows 10, Safari, Opera, and Node.js.
|
|
990
640
|
|
|
991
641
|
#### Inherited from
|
|
992
642
|
|
|
993
|
-
[`FeatureAll`](FeatureAll.md).[`
|
|
994
|
-
|
|
995
|
-
***
|
|
996
|
-
|
|
997
|
-
### LOCALE\_INFINITY
|
|
998
|
-
|
|
999
|
-
> **LOCALE\_INFINITY**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1000
|
-
|
|
1001
|
-
Language sensitive string representation of Infinity as "∞".
|
|
1002
|
-
|
|
1003
|
-
#### Remarks
|
|
1004
|
-
|
|
1005
|
-
Available in Chrome, Edge, Firefox, Internet Explorer 11 on Windows 10, Safari 10.0+, Opera, Android Browser 4.4, and Node.js 0.12+.
|
|
1006
|
-
|
|
1007
|
-
#### Inherited from
|
|
1008
|
-
|
|
1009
|
-
[`FeatureAll`](FeatureAll.md).[`LOCALE_INFINITY`](FeatureAll.md#locale_infinity)
|
|
1010
|
-
|
|
1011
|
-
***
|
|
1012
|
-
|
|
1013
|
-
### LOCALE\_NUMERALS
|
|
1014
|
-
|
|
1015
|
-
> **LOCALE\_NUMERALS**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1016
|
-
|
|
1017
|
-
Features shared by all engines capable of localized number formatting, including output of Arabic digits, the Arabic decimal separator "٫", the letters in the first word of the Arabic string representation of NaN \("ليس"\), Persian digits and the Persian digit group separator "٬".
|
|
1018
|
-
|
|
1019
|
-
#### Remarks
|
|
1020
|
-
|
|
1021
|
-
Available in Chrome, Edge, Firefox, Internet Explorer 11, Safari 10.0+, Opera, Android Browser 4.4, and Node.js 13+.
|
|
1022
|
-
|
|
1023
|
-
#### Inherited from
|
|
1024
|
-
|
|
1025
|
-
[`FeatureAll`](FeatureAll.md).[`LOCALE_NUMERALS`](FeatureAll.md#locale_numerals)
|
|
643
|
+
[`FeatureAll`](FeatureAll.md).[`LOCALE_INFINITY`](FeatureAll.md#locale_infinity)
|
|
1026
644
|
|
|
1027
645
|
***
|
|
1028
646
|
|
|
@@ -1034,7 +652,7 @@ Localized number formatting for Bengali.
|
|
|
1034
652
|
|
|
1035
653
|
#### Remarks
|
|
1036
654
|
|
|
1037
|
-
Available in Chrome, Edge, Firefox, Internet Explorer 11 on Windows 10, Safari
|
|
655
|
+
Available in Chrome, Edge, Firefox, Internet Explorer 11 on Windows 10, Safari before 18.4, Opera, and Node.js.
|
|
1038
656
|
|
|
1039
657
|
#### Inherited from
|
|
1040
658
|
|
|
@@ -1048,11 +666,11 @@ Available in Chrome, Edge, Firefox, Internet Explorer 11 on Windows 10, Safari 1
|
|
|
1048
666
|
|
|
1049
667
|
Extended localized number formatting.
|
|
1050
668
|
|
|
1051
|
-
|
|
669
|
+
Localized number formatting including the output of the first three letters in the second word of the Arabic string representation of NaN \("رقم"\), the letters in the Russian string representation of NaN \("не число"\) and the letters in the Persian string representation of NaN \("ناعدد"\).
|
|
1052
670
|
|
|
1053
671
|
#### Remarks
|
|
1054
672
|
|
|
1055
|
-
Available in Chrome, Edge, Firefox, Internet Explorer 11 on Windows 10, Safari
|
|
673
|
+
Available in Chrome, Edge, Firefox, Internet Explorer 11 on Windows 10, Safari, Opera, and Node.js.
|
|
1056
674
|
|
|
1057
675
|
#### Inherited from
|
|
1058
676
|
|
|
@@ -1060,38 +678,6 @@ Available in Chrome, Edge, Firefox, Internet Explorer 11 on Windows 10, Safari 1
|
|
|
1060
678
|
|
|
1061
679
|
***
|
|
1062
680
|
|
|
1063
|
-
### LOCATION
|
|
1064
|
-
|
|
1065
|
-
> **LOCATION**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1066
|
-
|
|
1067
|
-
Existence of the global object location with the property that Object.prototype.toString.call\(location\) evaluates to a string that starts with "\[object " and ends with "Location\]".
|
|
1068
|
-
|
|
1069
|
-
#### Remarks
|
|
1070
|
-
|
|
1071
|
-
Available in Chrome, Edge, Firefox, Safari, Opera, and Android Browser.
|
|
1072
|
-
|
|
1073
|
-
#### Inherited from
|
|
1074
|
-
|
|
1075
|
-
[`FeatureAll`](FeatureAll.md).[`LOCATION`](FeatureAll.md#location)
|
|
1076
|
-
|
|
1077
|
-
***
|
|
1078
|
-
|
|
1079
|
-
### MOZILLA
|
|
1080
|
-
|
|
1081
|
-
> **MOZILLA**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1082
|
-
|
|
1083
|
-
Existence of user agent string navigator.userAgent that starts with "Mozilla".
|
|
1084
|
-
|
|
1085
|
-
#### Remarks
|
|
1086
|
-
|
|
1087
|
-
Available in Chrome, Edge, Firefox, Internet Explorer, Safari, Opera, and Android Browser.
|
|
1088
|
-
|
|
1089
|
-
#### Inherited from
|
|
1090
|
-
|
|
1091
|
-
[`FeatureAll`](FeatureAll.md).[`MOZILLA`](FeatureAll.md#mozilla)
|
|
1092
|
-
|
|
1093
|
-
***
|
|
1094
|
-
|
|
1095
681
|
### NAME
|
|
1096
682
|
|
|
1097
683
|
> **NAME**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
@@ -1100,7 +686,7 @@ Existence of the name property for functions.
|
|
|
1100
686
|
|
|
1101
687
|
#### Remarks
|
|
1102
688
|
|
|
1103
|
-
Available in Chrome, Edge, Firefox, Safari, Opera,
|
|
689
|
+
Available in Chrome, Edge, Firefox, Safari, Opera, and Node.js.
|
|
1104
690
|
|
|
1105
691
|
#### Inherited from
|
|
1106
692
|
|
|
@@ -1116,7 +702,7 @@ A string representation of native functions typical for V8 or for Internet Explo
|
|
|
1116
702
|
|
|
1117
703
|
#### Remarks
|
|
1118
704
|
|
|
1119
|
-
Available in Chrome, Edge, Internet Explorer, Opera,
|
|
705
|
+
Available in Chrome, Edge, Internet Explorer, Opera, and Node.js.
|
|
1120
706
|
|
|
1121
707
|
#### Inherited from
|
|
1122
708
|
|
|
@@ -1134,7 +720,7 @@ A remarkable trait of this feature is the lack of line feed characters at the be
|
|
|
1134
720
|
|
|
1135
721
|
#### Remarks
|
|
1136
722
|
|
|
1137
|
-
Available in Chrome, Edge, Firefox, Safari, Opera,
|
|
723
|
+
Available in Chrome, Edge, Firefox, Safari, Opera, and Node.js.
|
|
1138
724
|
|
|
1139
725
|
#### Inherited from
|
|
1140
726
|
|
|
@@ -1142,22 +728,6 @@ Available in Chrome, Edge, Firefox, Safari, Opera, Android Browser, and Node.js.
|
|
|
1142
728
|
|
|
1143
729
|
***
|
|
1144
730
|
|
|
1145
|
-
### NO\_OLD\_SAFARI\_ARRAY\_ITERATOR
|
|
1146
|
-
|
|
1147
|
-
> **NO\_OLD\_SAFARI\_ARRAY\_ITERATOR**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1148
|
-
|
|
1149
|
-
The property that the string representation of Array.prototype.entries\(\) evaluates to "\[object Array Iterator\]".
|
|
1150
|
-
|
|
1151
|
-
#### Remarks
|
|
1152
|
-
|
|
1153
|
-
Available in Chrome, Edge, Firefox, Safari 9+, Opera, and Node.js 0.12+.
|
|
1154
|
-
|
|
1155
|
-
#### Inherited from
|
|
1156
|
-
|
|
1157
|
-
[`FeatureAll`](FeatureAll.md).[`NO_OLD_SAFARI_ARRAY_ITERATOR`](FeatureAll.md#no_old_safari_array_iterator)
|
|
1158
|
-
|
|
1159
|
-
***
|
|
1160
|
-
|
|
1161
731
|
### NO\_V8\_SRC
|
|
1162
732
|
|
|
1163
733
|
> **NO\_V8\_SRC**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
@@ -1176,111 +746,15 @@ Available in Firefox, Internet Explorer, and Safari.
|
|
|
1176
746
|
|
|
1177
747
|
***
|
|
1178
748
|
|
|
1179
|
-
### NODE\
|
|
1180
|
-
|
|
1181
|
-
> **NODE\_0\_10**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1182
|
-
|
|
1183
|
-
Features available in Node.js 0.10.
|
|
1184
|
-
|
|
1185
|
-
#### Inherited from
|
|
1186
|
-
|
|
1187
|
-
[`FeatureAll`](FeatureAll.md).[`NODE_0_10`](FeatureAll.md#node_0_10)
|
|
1188
|
-
|
|
1189
|
-
***
|
|
1190
|
-
|
|
1191
|
-
### NODE\_0\_12
|
|
1192
|
-
|
|
1193
|
-
> **NODE\_0\_12**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1194
|
-
|
|
1195
|
-
Features available in Node.js 0.12.
|
|
1196
|
-
|
|
1197
|
-
#### Inherited from
|
|
1198
|
-
|
|
1199
|
-
[`FeatureAll`](FeatureAll.md).[`NODE_0_12`](FeatureAll.md#node_0_12)
|
|
1200
|
-
|
|
1201
|
-
***
|
|
1202
|
-
|
|
1203
|
-
### NODE\_10
|
|
749
|
+
### NODE\_20
|
|
1204
750
|
|
|
1205
|
-
> **NODE\
|
|
751
|
+
> **NODE\_20**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1206
752
|
|
|
1207
|
-
Features available in Node.js
|
|
753
|
+
Features available in Node.js 20 to 21.
|
|
1208
754
|
|
|
1209
755
|
#### Inherited from
|
|
1210
756
|
|
|
1211
|
-
[`FeatureAll`](FeatureAll.md).[`
|
|
1212
|
-
|
|
1213
|
-
***
|
|
1214
|
-
|
|
1215
|
-
### NODE\_11
|
|
1216
|
-
|
|
1217
|
-
> **NODE\_11**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1218
|
-
|
|
1219
|
-
Features available in Node.js 11.
|
|
1220
|
-
|
|
1221
|
-
#### Inherited from
|
|
1222
|
-
|
|
1223
|
-
[`FeatureAll`](FeatureAll.md).[`NODE_11`](FeatureAll.md#node_11)
|
|
1224
|
-
|
|
1225
|
-
***
|
|
1226
|
-
|
|
1227
|
-
### NODE\_12
|
|
1228
|
-
|
|
1229
|
-
> **NODE\_12**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1230
|
-
|
|
1231
|
-
Features available in Node.js 12.
|
|
1232
|
-
|
|
1233
|
-
#### Inherited from
|
|
1234
|
-
|
|
1235
|
-
[`FeatureAll`](FeatureAll.md).[`NODE_12`](FeatureAll.md#node_12)
|
|
1236
|
-
|
|
1237
|
-
***
|
|
1238
|
-
|
|
1239
|
-
### NODE\_13
|
|
1240
|
-
|
|
1241
|
-
> **NODE\_13**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1242
|
-
|
|
1243
|
-
Features available in Node.js 13 and Node.js 14.
|
|
1244
|
-
|
|
1245
|
-
#### Inherited from
|
|
1246
|
-
|
|
1247
|
-
[`FeatureAll`](FeatureAll.md).[`NODE_13`](FeatureAll.md#node_13)
|
|
1248
|
-
|
|
1249
|
-
***
|
|
1250
|
-
|
|
1251
|
-
### NODE\_15
|
|
1252
|
-
|
|
1253
|
-
> **NODE\_15**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1254
|
-
|
|
1255
|
-
Features available in Node.js 15.
|
|
1256
|
-
|
|
1257
|
-
#### Inherited from
|
|
1258
|
-
|
|
1259
|
-
[`FeatureAll`](FeatureAll.md).[`NODE_15`](FeatureAll.md#node_15)
|
|
1260
|
-
|
|
1261
|
-
***
|
|
1262
|
-
|
|
1263
|
-
### NODE\_16\_0
|
|
1264
|
-
|
|
1265
|
-
> **NODE\_16\_0**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1266
|
-
|
|
1267
|
-
Features available in Node.js 16.0 to 16.5.
|
|
1268
|
-
|
|
1269
|
-
#### Inherited from
|
|
1270
|
-
|
|
1271
|
-
[`FeatureAll`](FeatureAll.md).[`NODE_16_0`](FeatureAll.md#node_16_0)
|
|
1272
|
-
|
|
1273
|
-
***
|
|
1274
|
-
|
|
1275
|
-
### NODE\_16\_6
|
|
1276
|
-
|
|
1277
|
-
> **NODE\_16\_6**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1278
|
-
|
|
1279
|
-
Features available in Node.js 16.6 to 21.
|
|
1280
|
-
|
|
1281
|
-
#### Inherited from
|
|
1282
|
-
|
|
1283
|
-
[`FeatureAll`](FeatureAll.md).[`NODE_16_6`](FeatureAll.md#node_16_6)
|
|
757
|
+
[`FeatureAll`](FeatureAll.md).[`NODE_20`](FeatureAll.md#node_20)
|
|
1284
758
|
|
|
1285
759
|
***
|
|
1286
760
|
|
|
@@ -1308,72 +782,6 @@ Features available in Node.js 22.12 to 22.14 and Node.js 23.3 or later.
|
|
|
1308
782
|
|
|
1309
783
|
***
|
|
1310
784
|
|
|
1311
|
-
### NODE\_4
|
|
1312
|
-
|
|
1313
|
-
> **NODE\_4**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1314
|
-
|
|
1315
|
-
Features available in Node.js 4.
|
|
1316
|
-
|
|
1317
|
-
#### Inherited from
|
|
1318
|
-
|
|
1319
|
-
[`FeatureAll`](FeatureAll.md).[`NODE_4`](FeatureAll.md#node_4)
|
|
1320
|
-
|
|
1321
|
-
***
|
|
1322
|
-
|
|
1323
|
-
### NODE\_5
|
|
1324
|
-
|
|
1325
|
-
> **NODE\_5**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1326
|
-
|
|
1327
|
-
Features available in Node.js 5 to 7.5.
|
|
1328
|
-
|
|
1329
|
-
#### Inherited from
|
|
1330
|
-
|
|
1331
|
-
[`FeatureAll`](FeatureAll.md).[`NODE_5`](FeatureAll.md#node_5)
|
|
1332
|
-
|
|
1333
|
-
***
|
|
1334
|
-
|
|
1335
|
-
### NODE\_7\_6
|
|
1336
|
-
|
|
1337
|
-
> **NODE\_7\_6**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1338
|
-
|
|
1339
|
-
Features available in Node.js 7.6 to 9.
|
|
1340
|
-
|
|
1341
|
-
#### Inherited from
|
|
1342
|
-
|
|
1343
|
-
[`FeatureAll`](FeatureAll.md).[`NODE_7_6`](FeatureAll.md#node_7_6)
|
|
1344
|
-
|
|
1345
|
-
***
|
|
1346
|
-
|
|
1347
|
-
### NODE\_NAME
|
|
1348
|
-
|
|
1349
|
-
> **NODE\_NAME**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1350
|
-
|
|
1351
|
-
Existence of the string document.nodeName that starts with a number sign \("#"\).
|
|
1352
|
-
|
|
1353
|
-
An alias for `ANY_DOCUMENT`.
|
|
1354
|
-
|
|
1355
|
-
#### Inherited from
|
|
1356
|
-
|
|
1357
|
-
[`FeatureAll`](FeatureAll.md).[`NODE_NAME`](FeatureAll.md#node_name)
|
|
1358
|
-
|
|
1359
|
-
***
|
|
1360
|
-
|
|
1361
|
-
### NODECONSTRUCTOR
|
|
1362
|
-
|
|
1363
|
-
> **NODECONSTRUCTOR**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1364
|
-
|
|
1365
|
-
Existence of the global object Node having the string representation "\[object NodeConstructor\]".
|
|
1366
|
-
|
|
1367
|
-
#### Remarks
|
|
1368
|
-
|
|
1369
|
-
Available in Safari before 10.0. This feature is not available inside web workers.
|
|
1370
|
-
|
|
1371
|
-
#### Inherited from
|
|
1372
|
-
|
|
1373
|
-
[`FeatureAll`](FeatureAll.md).[`NODECONSTRUCTOR`](FeatureAll.md#nodeconstructor)
|
|
1374
|
-
|
|
1375
|
-
***
|
|
1376
|
-
|
|
1377
785
|
### OBJECT\_ARRAY\_ENTRIES\_CTOR
|
|
1378
786
|
|
|
1379
787
|
> **OBJECT\_ARRAY\_ENTRIES\_CTOR**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
@@ -1382,7 +790,7 @@ The property that the Array.prototype.entries\(\).constructor is the Object cons
|
|
|
1382
790
|
|
|
1383
791
|
#### Remarks
|
|
1384
792
|
|
|
1385
|
-
Available in Firefox before 131, Safari
|
|
793
|
+
Available in Firefox before 131, Safari before 18.4, and Node.js before 22.0.
|
|
1386
794
|
|
|
1387
795
|
#### Inherited from
|
|
1388
796
|
|
|
@@ -1390,38 +798,6 @@ Available in Firefox before 131, Safari 9+ before 18.4, and Node.js 0.12+ before
|
|
|
1390
798
|
|
|
1391
799
|
***
|
|
1392
800
|
|
|
1393
|
-
### OBJECT\_L\_LOCATION\_CTOR
|
|
1394
|
-
|
|
1395
|
-
> **OBJECT\_L\_LOCATION\_CTOR**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1396
|
-
|
|
1397
|
-
Existence of the global function location.constructor whose string representation starts with "\[object L".
|
|
1398
|
-
|
|
1399
|
-
#### Remarks
|
|
1400
|
-
|
|
1401
|
-
Available in Internet Explorer and Safari before 10.0. This feature is not available inside web workers.
|
|
1402
|
-
|
|
1403
|
-
#### Inherited from
|
|
1404
|
-
|
|
1405
|
-
[`FeatureAll`](FeatureAll.md).[`OBJECT_L_LOCATION_CTOR`](FeatureAll.md#object_l_location_ctor)
|
|
1406
|
-
|
|
1407
|
-
***
|
|
1408
|
-
|
|
1409
|
-
### OBJECT\_UNDEFINED
|
|
1410
|
-
|
|
1411
|
-
> **OBJECT\_UNDEFINED**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1412
|
-
|
|
1413
|
-
Having the function Object.prototype.toString return the string "\[object Undefined\]" when invoked without a binding.
|
|
1414
|
-
|
|
1415
|
-
#### Remarks
|
|
1416
|
-
|
|
1417
|
-
Available in Chrome, Edge, Firefox, Internet Explorer 10+, Safari, Opera, Android Browser 4.1+, and Node.js.
|
|
1418
|
-
|
|
1419
|
-
#### Inherited from
|
|
1420
|
-
|
|
1421
|
-
[`FeatureAll`](FeatureAll.md).[`OBJECT_UNDEFINED`](FeatureAll.md#object_undefined)
|
|
1422
|
-
|
|
1423
|
-
***
|
|
1424
|
-
|
|
1425
801
|
### OBJECT\_W\_SELF
|
|
1426
802
|
|
|
1427
803
|
> **OBJECT\_W\_SELF**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
@@ -1430,7 +806,7 @@ The property that the string representation of the global object self starts wit
|
|
|
1430
806
|
|
|
1431
807
|
#### Remarks
|
|
1432
808
|
|
|
1433
|
-
Available in Chrome, Edge, Firefox, Internet Explorer, Safari,
|
|
809
|
+
Available in Chrome, Edge, Firefox, Internet Explorer, Safari, and Opera. This feature is not available inside web workers in Chrome, Edge, Firefox, Safari, and Opera.
|
|
1434
810
|
|
|
1435
811
|
#### Inherited from
|
|
1436
812
|
|
|
@@ -1438,22 +814,6 @@ Available in Chrome, Edge, Firefox, Internet Explorer, Safari, Opera, and Androi
|
|
|
1438
814
|
|
|
1439
815
|
***
|
|
1440
816
|
|
|
1441
|
-
### OLD\_SAFARI\_LOCATION\_CTOR
|
|
1442
|
-
|
|
1443
|
-
> **OLD\_SAFARI\_LOCATION\_CTOR**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1444
|
-
|
|
1445
|
-
Existence of the global object location.constructor whose string representation starts with "\[object " and ends with "LocationConstructor\]".
|
|
1446
|
-
|
|
1447
|
-
#### Remarks
|
|
1448
|
-
|
|
1449
|
-
Available in Safari before 10.0.
|
|
1450
|
-
|
|
1451
|
-
#### Inherited from
|
|
1452
|
-
|
|
1453
|
-
[`FeatureAll`](FeatureAll.md).[`OLD_SAFARI_LOCATION_CTOR`](FeatureAll.md#old_safari_location_ctor)
|
|
1454
|
-
|
|
1455
|
-
***
|
|
1456
|
-
|
|
1457
817
|
### PLAIN\_INTL
|
|
1458
818
|
|
|
1459
819
|
> **PLAIN\_INTL**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
@@ -1462,7 +822,7 @@ Existence of the global object Intl having the string representation "\[object O
|
|
|
1462
822
|
|
|
1463
823
|
#### Remarks
|
|
1464
824
|
|
|
1465
|
-
Available in Internet Explorer
|
|
825
|
+
Available in Internet Explorer.
|
|
1466
826
|
|
|
1467
827
|
#### Inherited from
|
|
1468
828
|
|
|
@@ -1478,7 +838,7 @@ The property that the string representation of String.prototype.matchAll\(\) eva
|
|
|
1478
838
|
|
|
1479
839
|
#### Remarks
|
|
1480
840
|
|
|
1481
|
-
Available in Chrome, Edge, Firefox, Safari
|
|
841
|
+
Available in Chrome, Edge, Firefox, Safari, Opera, and Node.js.
|
|
1482
842
|
|
|
1483
843
|
#### Inherited from
|
|
1484
844
|
|
|
@@ -1486,109 +846,49 @@ Available in Chrome, Edge, Firefox, Safari 13+, Opera, and Node.js 12+.
|
|
|
1486
846
|
|
|
1487
847
|
***
|
|
1488
848
|
|
|
1489
|
-
###
|
|
1490
|
-
|
|
1491
|
-
> **SAFARI**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1492
|
-
|
|
1493
|
-
Features available in the current stable version of Safari.
|
|
1494
|
-
|
|
1495
|
-
An alias for `SAFARI_18_4`.
|
|
1496
|
-
|
|
1497
|
-
#### Inherited from
|
|
1498
|
-
|
|
1499
|
-
[`FeatureAll`](FeatureAll.md).[`SAFARI`](FeatureAll.md#safari)
|
|
1500
|
-
|
|
1501
|
-
***
|
|
1502
|
-
|
|
1503
|
-
### SAFARI\_10\_0
|
|
1504
|
-
|
|
1505
|
-
> **SAFARI\_10\_0**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1506
|
-
|
|
1507
|
-
Features available in Safari 10.0.
|
|
1508
|
-
|
|
1509
|
-
#### Inherited from
|
|
1510
|
-
|
|
1511
|
-
[`FeatureAll`](FeatureAll.md).[`SAFARI_10_0`](FeatureAll.md#safari_10_0)
|
|
1512
|
-
|
|
1513
|
-
***
|
|
1514
|
-
|
|
1515
|
-
### SAFARI\_10\_1
|
|
1516
|
-
|
|
1517
|
-
> **SAFARI\_10\_1**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1518
|
-
|
|
1519
|
-
Features available in Safari 10.1 and Safari 11.
|
|
1520
|
-
|
|
1521
|
-
#### Inherited from
|
|
1522
|
-
|
|
1523
|
-
[`FeatureAll`](FeatureAll.md).[`SAFARI_10_1`](FeatureAll.md#safari_10_1)
|
|
1524
|
-
|
|
1525
|
-
***
|
|
1526
|
-
|
|
1527
|
-
### SAFARI\_12
|
|
1528
|
-
|
|
1529
|
-
> **SAFARI\_12**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1530
|
-
|
|
1531
|
-
Features available in Safari 12.
|
|
849
|
+
### RUSSIAN\_INFINITY
|
|
1532
850
|
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
[`FeatureAll`](FeatureAll.md).[`SAFARI_12`](FeatureAll.md#safari_12)
|
|
851
|
+
> **RUSSIAN\_INFINITY**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1536
852
|
|
|
1537
|
-
|
|
853
|
+
Russian string representation of Infinity as "∞".
|
|
1538
854
|
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
> **SAFARI\_13**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
855
|
+
#### Remarks
|
|
1542
856
|
|
|
1543
|
-
|
|
857
|
+
Available in Chrome, Edge, Firefox, Internet Explorer 11 on Windows 8 and on Windows 10, Safari, Opera, and Node.js.
|
|
1544
858
|
|
|
1545
859
|
#### Inherited from
|
|
1546
860
|
|
|
1547
|
-
[`FeatureAll`](FeatureAll.md).[`
|
|
861
|
+
[`FeatureAll`](FeatureAll.md).[`RUSSIAN_INFINITY`](FeatureAll.md#russian_infinity)
|
|
1548
862
|
|
|
1549
863
|
***
|
|
1550
864
|
|
|
1551
|
-
### SAFARI
|
|
1552
|
-
|
|
1553
|
-
> **SAFARI\_14\_0\_1**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1554
|
-
|
|
1555
|
-
Features available in Safari 14.0.1 to 14.0.3.
|
|
1556
|
-
|
|
1557
|
-
#### Inherited from
|
|
1558
|
-
|
|
1559
|
-
[`FeatureAll`](FeatureAll.md).[`SAFARI_14_0_1`](FeatureAll.md#safari_14_0_1)
|
|
1560
|
-
|
|
1561
|
-
***
|
|
865
|
+
### SAFARI
|
|
1562
866
|
|
|
1563
|
-
|
|
867
|
+
> **SAFARI**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1564
868
|
|
|
1565
|
-
|
|
869
|
+
Features available in the current stable version of Safari.
|
|
1566
870
|
|
|
1567
|
-
|
|
871
|
+
An alias for `SAFARI_18_4`.
|
|
1568
872
|
|
|
1569
873
|
#### Inherited from
|
|
1570
874
|
|
|
1571
|
-
[`FeatureAll`](FeatureAll.md).[`
|
|
875
|
+
[`FeatureAll`](FeatureAll.md).[`SAFARI`](FeatureAll.md#safari)
|
|
1572
876
|
|
|
1573
877
|
***
|
|
1574
878
|
|
|
1575
|
-
### SAFARI\
|
|
1576
|
-
|
|
1577
|
-
> **SAFARI\_15\_4**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
879
|
+
### SAFARI\_17\_4
|
|
1578
880
|
|
|
1579
|
-
|
|
881
|
+
> **SAFARI\_17\_4**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1580
882
|
|
|
1581
|
-
|
|
883
|
+
Features available in Safari 17.4 to 17.6.
|
|
1582
884
|
|
|
1583
|
-
|
|
885
|
+
#### Remarks
|
|
1584
886
|
|
|
1585
|
-
|
|
887
|
+
This feature may be replaced or removed in the near future when current browser versions become obsolete. Use `SAFARI_PRE_PREV` instead of `SAFARI_17_4` for long term support.
|
|
1586
888
|
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
> **SAFARI\_17\_4**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
889
|
+
#### See
|
|
1590
890
|
|
|
1591
|
-
|
|
891
|
+
[Engine Support Policy](https://github.com/fasttime/JScrewIt#engine-support-policy)
|
|
1592
892
|
|
|
1593
893
|
#### Inherited from
|
|
1594
894
|
|
|
@@ -1602,6 +902,14 @@ Features available in Safari 17.4 to 17.6.
|
|
|
1602
902
|
|
|
1603
903
|
Features available in Safari 18.0 to 18.3.
|
|
1604
904
|
|
|
905
|
+
#### Remarks
|
|
906
|
+
|
|
907
|
+
This feature may be replaced or removed in the near future when current browser versions become obsolete.
|
|
908
|
+
|
|
909
|
+
#### See
|
|
910
|
+
|
|
911
|
+
[Engine Support Policy](https://github.com/fasttime/JScrewIt#engine-support-policy)
|
|
912
|
+
|
|
1605
913
|
#### Inherited from
|
|
1606
914
|
|
|
1607
915
|
[`FeatureAll`](FeatureAll.md).[`SAFARI_18_0`](FeatureAll.md#safari_18_0)
|
|
@@ -1614,45 +922,45 @@ Features available in Safari 18.0 to 18.3.
|
|
|
1614
922
|
|
|
1615
923
|
Features available in Safari 18.4 or later.
|
|
1616
924
|
|
|
1617
|
-
####
|
|
1618
|
-
|
|
1619
|
-
[`FeatureAll`](FeatureAll.md).[`SAFARI_18_4`](FeatureAll.md#safari_18_4)
|
|
1620
|
-
|
|
1621
|
-
***
|
|
925
|
+
#### Remarks
|
|
1622
926
|
|
|
1623
|
-
|
|
927
|
+
This feature may be replaced or removed in the near future when current browser versions become obsolete. Use `SAFARI` or `SAFARI_PREV` instead of `SAFARI_18_4` for long term support.
|
|
1624
928
|
|
|
1625
|
-
|
|
929
|
+
#### See
|
|
1626
930
|
|
|
1627
|
-
|
|
931
|
+
[Engine Support Policy](https://github.com/fasttime/JScrewIt#engine-support-policy)
|
|
1628
932
|
|
|
1629
933
|
#### Inherited from
|
|
1630
934
|
|
|
1631
|
-
[`FeatureAll`](FeatureAll.md).[`
|
|
935
|
+
[`FeatureAll`](FeatureAll.md).[`SAFARI_18_4`](FeatureAll.md#safari_18_4)
|
|
1632
936
|
|
|
1633
937
|
***
|
|
1634
938
|
|
|
1635
|
-
### SAFARI\
|
|
939
|
+
### SAFARI\_PRE\_PREV
|
|
1636
940
|
|
|
1637
|
-
> **SAFARI\
|
|
941
|
+
> **SAFARI\_PRE\_PREV**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1638
942
|
|
|
1639
|
-
Features available in
|
|
943
|
+
Features available in the previous to previous version of Safari.
|
|
944
|
+
|
|
945
|
+
An alias for `SAFARI_17_4`.
|
|
1640
946
|
|
|
1641
947
|
#### Inherited from
|
|
1642
948
|
|
|
1643
|
-
[`FeatureAll`](FeatureAll.md).[`
|
|
949
|
+
[`FeatureAll`](FeatureAll.md).[`SAFARI_PRE_PREV`](FeatureAll.md#safari_pre_prev)
|
|
1644
950
|
|
|
1645
951
|
***
|
|
1646
952
|
|
|
1647
|
-
### SAFARI\
|
|
953
|
+
### SAFARI\_PREV
|
|
1648
954
|
|
|
1649
|
-
> **SAFARI\
|
|
955
|
+
> **SAFARI\_PREV**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1650
956
|
|
|
1651
|
-
Features available in Safari
|
|
957
|
+
Features available in the previous to current version of Safari.
|
|
958
|
+
|
|
959
|
+
An alias for `SAFARI_18_4`.
|
|
1652
960
|
|
|
1653
961
|
#### Inherited from
|
|
1654
962
|
|
|
1655
|
-
[`FeatureAll`](FeatureAll.md).[`
|
|
963
|
+
[`FeatureAll`](FeatureAll.md).[`SAFARI_PREV`](FeatureAll.md#safari_prev)
|
|
1656
964
|
|
|
1657
965
|
***
|
|
1658
966
|
|
|
@@ -1660,27 +968,15 @@ Features available in Safari 9.
|
|
|
1660
968
|
|
|
1661
969
|
> **SELF**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1662
970
|
|
|
1663
|
-
An alias for `ANY_WINDOW`.
|
|
1664
|
-
|
|
1665
|
-
#### Inherited from
|
|
1666
|
-
|
|
1667
|
-
[`FeatureAll`](FeatureAll.md).[`SELF`](FeatureAll.md#self)
|
|
1668
|
-
|
|
1669
|
-
***
|
|
1670
|
-
|
|
1671
|
-
### SELF\_OBJ
|
|
1672
|
-
|
|
1673
|
-
> **SELF\_OBJ**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1674
|
-
|
|
1675
971
|
Existence of the global object self whose string representation starts with "\[object ".
|
|
1676
972
|
|
|
1677
973
|
#### Remarks
|
|
1678
974
|
|
|
1679
|
-
Available in Chrome, Edge, Firefox, Internet Explorer, Safari,
|
|
975
|
+
Available in Chrome, Edge, Firefox, Internet Explorer, Safari, and Opera.
|
|
1680
976
|
|
|
1681
977
|
#### Inherited from
|
|
1682
978
|
|
|
1683
|
-
[`FeatureAll`](FeatureAll.md).[`
|
|
979
|
+
[`FeatureAll`](FeatureAll.md).[`SELF`](FeatureAll.md#self)
|
|
1684
980
|
|
|
1685
981
|
***
|
|
1686
982
|
|
|
@@ -1692,7 +988,7 @@ Support for the two-letter locale name "ar" to format decimal numbers as Arabic
|
|
|
1692
988
|
|
|
1693
989
|
#### Remarks
|
|
1694
990
|
|
|
1695
|
-
Available in Firefox before 134, Internet Explorer
|
|
991
|
+
Available in Firefox before 134, Internet Explorer, Safari before 18.0, and Node.js before 22.12–22.14 and 23.3.
|
|
1696
992
|
|
|
1697
993
|
#### Inherited from
|
|
1698
994
|
|
|
@@ -1708,7 +1004,7 @@ Existence of the global string status.
|
|
|
1708
1004
|
|
|
1709
1005
|
#### Remarks
|
|
1710
1006
|
|
|
1711
|
-
Available in Chrome, Edge, Firefox, Internet Explorer, Safari,
|
|
1007
|
+
Available in Chrome, Edge, Firefox, Internet Explorer, Safari, and Opera. This feature is not available inside web workers.
|
|
1712
1008
|
|
|
1713
1009
|
#### Inherited from
|
|
1714
1010
|
|
|
@@ -1716,24 +1012,6 @@ Available in Chrome, Edge, Firefox, Internet Explorer, Safari, Opera, and Androi
|
|
|
1716
1012
|
|
|
1717
1013
|
***
|
|
1718
1014
|
|
|
1719
|
-
### UNDEFINED
|
|
1720
|
-
|
|
1721
|
-
> **UNDEFINED**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1722
|
-
|
|
1723
|
-
The property that Object.prototype.toString.call\(\) evaluates to "\[object Undefined\]".
|
|
1724
|
-
|
|
1725
|
-
This behavior is specified by ECMAScript, and is enforced by all engines except Android Browser versions prior to 4.1.2, where this feature is not available.
|
|
1726
|
-
|
|
1727
|
-
#### Remarks
|
|
1728
|
-
|
|
1729
|
-
Available in Chrome, Edge, Firefox, Internet Explorer, Safari, Opera, Android Browser 4.1+, and Node.js.
|
|
1730
|
-
|
|
1731
|
-
#### Inherited from
|
|
1732
|
-
|
|
1733
|
-
[`FeatureAll`](FeatureAll.md).[`UNDEFINED`](FeatureAll.md#undefined)
|
|
1734
|
-
|
|
1735
|
-
***
|
|
1736
|
-
|
|
1737
1015
|
### V8\_SRC
|
|
1738
1016
|
|
|
1739
1017
|
> **V8\_SRC**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
@@ -1744,7 +1022,7 @@ Remarkable traits are the lack of line feed characters at the beginning and at t
|
|
|
1744
1022
|
|
|
1745
1023
|
#### Remarks
|
|
1746
1024
|
|
|
1747
|
-
Available in Chrome, Edge, Opera,
|
|
1025
|
+
Available in Chrome, Edge, Opera, and Node.js.
|
|
1748
1026
|
|
|
1749
1027
|
#### Inherited from
|
|
1750
1028
|
|
|
@@ -1760,7 +1038,7 @@ Existence of the global object self having the string representation "\[object W
|
|
|
1760
1038
|
|
|
1761
1039
|
#### Remarks
|
|
1762
1040
|
|
|
1763
|
-
Available in Chrome, Edge, Firefox, Internet Explorer, Safari,
|
|
1041
|
+
Available in Chrome, Edge, Firefox, Internet Explorer, Safari, and Opera. This feature is not available inside web workers.
|
|
1764
1042
|
|
|
1765
1043
|
#### Inherited from
|
|
1766
1044
|
|
|
@@ -1796,7 +1074,7 @@ JScrewIt.Feature.areCompatible("V8_SRC", "IE_SRC")
|
|
|
1796
1074
|
|
|
1797
1075
|
```js
|
|
1798
1076
|
// true
|
|
1799
|
-
JScrewIt.Feature.areCompatible(JScrewIt.Feature.DEFAULT, JScrewIt.Feature.
|
|
1077
|
+
JScrewIt.Feature.areCompatible(JScrewIt.Feature.DEFAULT, JScrewIt.Feature.FLAT)
|
|
1800
1078
|
```
|
|
1801
1079
|
|
|
1802
1080
|
***
|
|
@@ -1857,17 +1135,18 @@ A feature object, or `null` if no arguments are specified.
|
|
|
1857
1135
|
|
|
1858
1136
|
#### Example
|
|
1859
1137
|
|
|
1860
|
-
|
|
1138
|
+
The following declaration creates a new feature object equivalent to
|
|
1139
|
+
[\`NAME\`](#name).
|
|
1861
1140
|
|
|
1862
1141
|
```js
|
|
1863
|
-
const newFeature = JScrewIt.Feature.commonOf(["
|
|
1142
|
+
const newFeature = JScrewIt.Feature.commonOf(["AT", "NAME"], ["NAME", "WINDOW"]);
|
|
1864
1143
|
```
|
|
1865
1144
|
|
|
1866
|
-
|
|
1867
|
-
This is because both [\`
|
|
1145
|
+
The following declaration creates a new feature object equivalent to [\`NO\_IE\_SRC\`](#no_ie_src).
|
|
1146
|
+
This is because both [\`FF\_SRC\`](#ff_src) and [\`V8\_SRC\`](#v8_src) imply [\`NO\_IE\_SRC\`](#no_ie_src).
|
|
1868
1147
|
|
|
1869
1148
|
```js
|
|
1870
|
-
const newFeature = JScrewIt.Feature.commonOf("
|
|
1149
|
+
const newFeature = JScrewIt.Feature.commonOf("FF_SRC", "V8_SRC");
|
|
1871
1150
|
```
|
|
1872
1151
|
|
|
1873
1152
|
***
|