jscrewit 2.37.0 → 2.39.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 +45 -28
- package/api-doc/README.md +15 -109
- package/api-doc/functions/encode.md +35 -0
- package/api-doc/interfaces/CustomFeature.md +47 -43
- package/api-doc/interfaces/ElementaryFeature.md +46 -42
- package/api-doc/interfaces/EncodeOptions.md +14 -19
- package/api-doc/interfaces/Feature.md +43 -40
- package/api-doc/interfaces/FeatureAll.md +434 -415
- package/api-doc/interfaces/FeatureConstructor.md +621 -585
- package/api-doc/interfaces/PredefinedFeature.md +48 -42
- package/api-doc/interfaces/default.md +8 -11
- package/api-doc/interfaces/encode.md +15 -18
- package/api-doc/type-aliases/ElementaryFeatureName.md +9 -0
- package/api-doc/type-aliases/FeatureElement.md +14 -0
- package/api-doc/type-aliases/FeatureElementOrCompatibleArray.md +16 -0
- package/api-doc/type-aliases/PredefinedFeatureName.md +9 -0
- package/api-doc/type-aliases/RunAs.md +10 -0
- package/api-doc/variables/Feature.md +7 -0
- package/api-doc/variables/default.md +7 -0
- package/lib/feature-all.d.ts +123 -36
- package/lib/feature.d.ts +6 -6
- package/lib/jscrewit.js +913 -191
- package/lib/jscrewit.min.js +2 -2
- package/package.json +6 -4
- package/readme.md +14 -17
- package/ui/ui.js +1 -1
|
@@ -1,16 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
[**JScrewIt**](../README.md) • **Docs**
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
***
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
↳ **`FeatureConstructor`**
|
|
5
|
+
# Interface: FeatureConstructor()
|
|
8
6
|
|
|
9
|
-
##
|
|
7
|
+
## Extends
|
|
10
8
|
|
|
11
|
-
|
|
9
|
+
- [`FeatureAll`](FeatureAll.md)
|
|
12
10
|
|
|
13
|
-
|
|
11
|
+
> **FeatureConstructor**(...`features`): [`CustomFeature`](CustomFeature.md)
|
|
14
12
|
|
|
15
13
|
Creates a new feature object from the union of the specified features.
|
|
16
14
|
|
|
@@ -19,17 +17,15 @@ The constructor can be used with or without the `new` operator, e.g.
|
|
|
19
17
|
If no arguments are specified, the new feature object will be equivalent to
|
|
20
18
|
[`DEFAULT`](FeatureAll.md#default).
|
|
21
19
|
|
|
22
|
-
|
|
20
|
+
## Parameters
|
|
23
21
|
|
|
24
|
-
|
|
25
|
-
| :------ | :------ |
|
|
26
|
-
| `...features` | [`FeatureElementOrCompatibleArray`](../README.md#featureelementorcompatiblearray)[] |
|
|
22
|
+
• ...**features**: [`FeatureElementOrCompatibleArray`](../type-aliases/FeatureElementOrCompatibleArray.md)[]
|
|
27
23
|
|
|
28
|
-
|
|
24
|
+
## Returns
|
|
29
25
|
|
|
30
26
|
[`CustomFeature`](CustomFeature.md)
|
|
31
27
|
|
|
32
|
-
|
|
28
|
+
## Example
|
|
33
29
|
|
|
34
30
|
The following statements are equivalent, and will all construct a new feature object
|
|
35
31
|
including both [`ANY_DOCUMENT`](FeatureAll.md#any_document) and [`ANY_WINDOW`](FeatureConstructor.md#any_window).
|
|
@@ -46,129 +42,15 @@ new JScrewIt.Feature(JScrewIt.Feature.ANY_DOCUMENT, JScrewIt.Feature.ANY_WINDOW)
|
|
|
46
42
|
new JScrewIt.Feature([JScrewIt.Feature.ANY_DOCUMENT, JScrewIt.Feature.ANY_WINDOW]);
|
|
47
43
|
```
|
|
48
44
|
|
|
49
|
-
|
|
45
|
+
## Throws
|
|
50
46
|
|
|
51
47
|
An error is thrown if any of the specified features are not mutually compatible.
|
|
52
48
|
|
|
53
|
-
## Table of contents
|
|
54
|
-
|
|
55
|
-
### Constructors
|
|
56
|
-
|
|
57
|
-
- [constructor](FeatureConstructor.md#constructor)
|
|
58
|
-
|
|
59
|
-
### Properties
|
|
60
|
-
|
|
61
|
-
- [ALL](FeatureConstructor.md#all)
|
|
62
|
-
- [ANDRO\_4\_0](FeatureConstructor.md#andro_4_0)
|
|
63
|
-
- [ANDRO\_4\_1](FeatureConstructor.md#andro_4_1)
|
|
64
|
-
- [ANDRO\_4\_4](FeatureConstructor.md#andro_4_4)
|
|
65
|
-
- [ANY\_DOCUMENT](FeatureConstructor.md#any_document)
|
|
66
|
-
- [ANY\_WINDOW](FeatureConstructor.md#any_window)
|
|
67
|
-
- [ARRAY\_ITERATOR](FeatureConstructor.md#array_iterator)
|
|
68
|
-
- [ARROW](FeatureConstructor.md#arrow)
|
|
69
|
-
- [AT](FeatureConstructor.md#at)
|
|
70
|
-
- [ATOB](FeatureConstructor.md#atob)
|
|
71
|
-
- [AUTO](FeatureConstructor.md#auto)
|
|
72
|
-
- [BARPROP](FeatureConstructor.md#barprop)
|
|
73
|
-
- [BROWSER](FeatureConstructor.md#browser)
|
|
74
|
-
- [CAPITAL\_HTML](FeatureConstructor.md#capital_html)
|
|
75
|
-
- [CHROME](FeatureConstructor.md#chrome)
|
|
76
|
-
- [CHROME\_122](FeatureConstructor.md#chrome_122)
|
|
77
|
-
- [CHROME\_PREV](FeatureConstructor.md#chrome_prev)
|
|
78
|
-
- [COMPACT](FeatureConstructor.md#compact)
|
|
79
|
-
- [CONSOLE](FeatureConstructor.md#console)
|
|
80
|
-
- [DEFAULT](FeatureConstructor.md#default)
|
|
81
|
-
- [DOCUMENT](FeatureConstructor.md#document)
|
|
82
|
-
- [DOMWINDOW](FeatureConstructor.md#domwindow)
|
|
83
|
-
- [ELEMENTARY](FeatureConstructor.md#elementary)
|
|
84
|
-
- [ESC\_HTML\_ALL](FeatureConstructor.md#esc_html_all)
|
|
85
|
-
- [ESC\_HTML\_QUOT](FeatureConstructor.md#esc_html_quot)
|
|
86
|
-
- [ESC\_HTML\_QUOT\_ONLY](FeatureConstructor.md#esc_html_quot_only)
|
|
87
|
-
- [ESC\_REGEXP\_LF](FeatureConstructor.md#esc_regexp_lf)
|
|
88
|
-
- [ESC\_REGEXP\_SLASH](FeatureConstructor.md#esc_regexp_slash)
|
|
89
|
-
- [FF](FeatureConstructor.md#ff)
|
|
90
|
-
- [FF\_90](FeatureConstructor.md#ff_90)
|
|
91
|
-
- [FF\_ESR](FeatureConstructor.md#ff_esr)
|
|
92
|
-
- [FF\_PREV](FeatureConstructor.md#ff_prev)
|
|
93
|
-
- [FF\_SRC](FeatureConstructor.md#ff_src)
|
|
94
|
-
- [FILL](FeatureConstructor.md#fill)
|
|
95
|
-
- [FLAT](FeatureConstructor.md#flat)
|
|
96
|
-
- [FROM\_CODE\_POINT](FeatureConstructor.md#from_code_point)
|
|
97
|
-
- [FUNCTION\_19\_LF](FeatureConstructor.md#function_19_lf)
|
|
98
|
-
- [FUNCTION\_22\_LF](FeatureConstructor.md#function_22_lf)
|
|
99
|
-
- [GENERIC\_ARRAY\_TO\_STRING](FeatureConstructor.md#generic_array_to_string)
|
|
100
|
-
- [GLOBAL\_UNDEFINED](FeatureConstructor.md#global_undefined)
|
|
101
|
-
- [GMT](FeatureConstructor.md#gmt)
|
|
102
|
-
- [HISTORY](FeatureConstructor.md#history)
|
|
103
|
-
- [HTMLAUDIOELEMENT](FeatureConstructor.md#htmlaudioelement)
|
|
104
|
-
- [HTMLDOCUMENT](FeatureConstructor.md#htmldocument)
|
|
105
|
-
- [IE\_10](FeatureConstructor.md#ie_10)
|
|
106
|
-
- [IE\_11](FeatureConstructor.md#ie_11)
|
|
107
|
-
- [IE\_11\_WIN\_10](FeatureConstructor.md#ie_11_win_10)
|
|
108
|
-
- [IE\_9](FeatureConstructor.md#ie_9)
|
|
109
|
-
- [IE\_SRC](FeatureConstructor.md#ie_src)
|
|
110
|
-
- [INCR\_CHAR](FeatureConstructor.md#incr_char)
|
|
111
|
-
- [INTL](FeatureConstructor.md#intl)
|
|
112
|
-
- [LOCALE\_INFINITY](FeatureConstructor.md#locale_infinity)
|
|
113
|
-
- [LOCALE\_NUMERALS](FeatureConstructor.md#locale_numerals)
|
|
114
|
-
- [LOCALE\_NUMERALS\_EXT](FeatureConstructor.md#locale_numerals_ext)
|
|
115
|
-
- [LOCATION](FeatureConstructor.md#location)
|
|
116
|
-
- [NAME](FeatureConstructor.md#name)
|
|
117
|
-
- [NODECONSTRUCTOR](FeatureConstructor.md#nodeconstructor)
|
|
118
|
-
- [NODE\_0\_10](FeatureConstructor.md#node_0_10)
|
|
119
|
-
- [NODE\_0\_12](FeatureConstructor.md#node_0_12)
|
|
120
|
-
- [NODE\_10](FeatureConstructor.md#node_10)
|
|
121
|
-
- [NODE\_11](FeatureConstructor.md#node_11)
|
|
122
|
-
- [NODE\_12](FeatureConstructor.md#node_12)
|
|
123
|
-
- [NODE\_13](FeatureConstructor.md#node_13)
|
|
124
|
-
- [NODE\_15](FeatureConstructor.md#node_15)
|
|
125
|
-
- [NODE\_16\_0](FeatureConstructor.md#node_16_0)
|
|
126
|
-
- [NODE\_16\_6](FeatureConstructor.md#node_16_6)
|
|
127
|
-
- [NODE\_22](FeatureConstructor.md#node_22)
|
|
128
|
-
- [NODE\_4](FeatureConstructor.md#node_4)
|
|
129
|
-
- [NODE\_5](FeatureConstructor.md#node_5)
|
|
130
|
-
- [NO\_FF\_SRC](FeatureConstructor.md#no_ff_src)
|
|
131
|
-
- [NO\_IE\_SRC](FeatureConstructor.md#no_ie_src)
|
|
132
|
-
- [NO\_OLD\_SAFARI\_ARRAY\_ITERATOR](FeatureConstructor.md#no_old_safari_array_iterator)
|
|
133
|
-
- [NO\_V8\_SRC](FeatureConstructor.md#no_v8_src)
|
|
134
|
-
- [OBJECT\_ARRAY\_ENTRIES\_CTOR](FeatureConstructor.md#object_array_entries_ctor)
|
|
135
|
-
- [OBJECT\_L\_LOCATION\_CTOR](FeatureConstructor.md#object_l_location_ctor)
|
|
136
|
-
- [OBJECT\_UNDEFINED](FeatureConstructor.md#object_undefined)
|
|
137
|
-
- [OBJECT\_W\_CTOR](FeatureConstructor.md#object_w_ctor)
|
|
138
|
-
- [OLD\_SAFARI\_LOCATION\_CTOR](FeatureConstructor.md#old_safari_location_ctor)
|
|
139
|
-
- [PLAIN\_INTL](FeatureConstructor.md#plain_intl)
|
|
140
|
-
- [REGEXP\_STRING\_ITERATOR](FeatureConstructor.md#regexp_string_iterator)
|
|
141
|
-
- [SAFARI](FeatureConstructor.md#safari)
|
|
142
|
-
- [SAFARI\_10](FeatureConstructor.md#safari_10)
|
|
143
|
-
- [SAFARI\_12](FeatureConstructor.md#safari_12)
|
|
144
|
-
- [SAFARI\_13](FeatureConstructor.md#safari_13)
|
|
145
|
-
- [SAFARI\_14\_0\_1](FeatureConstructor.md#safari_14_0_1)
|
|
146
|
-
- [SAFARI\_14\_1](FeatureConstructor.md#safari_14_1)
|
|
147
|
-
- [SAFARI\_15\_4](FeatureConstructor.md#safari_15_4)
|
|
148
|
-
- [SAFARI\_17\_4](FeatureConstructor.md#safari_17_4)
|
|
149
|
-
- [SAFARI\_7\_0](FeatureConstructor.md#safari_7_0)
|
|
150
|
-
- [SAFARI\_7\_1](FeatureConstructor.md#safari_7_1)
|
|
151
|
-
- [SAFARI\_9](FeatureConstructor.md#safari_9)
|
|
152
|
-
- [SELF](FeatureConstructor.md#self)
|
|
153
|
-
- [SELF\_OBJ](FeatureConstructor.md#self_obj)
|
|
154
|
-
- [SHORT\_LOCALES](FeatureConstructor.md#short_locales)
|
|
155
|
-
- [STATUS](FeatureConstructor.md#status)
|
|
156
|
-
- [UNDEFINED](FeatureConstructor.md#undefined)
|
|
157
|
-
- [V8\_SRC](FeatureConstructor.md#v8_src)
|
|
158
|
-
- [WINDOW](FeatureConstructor.md#window)
|
|
159
|
-
|
|
160
|
-
### Methods
|
|
161
|
-
|
|
162
|
-
- [areCompatible](FeatureConstructor.md#arecompatible)
|
|
163
|
-
- [areEqual](FeatureConstructor.md#areequal)
|
|
164
|
-
- [commonOf](FeatureConstructor.md#commonof)
|
|
165
|
-
- [descriptionFor](FeatureConstructor.md#descriptionfor)
|
|
166
|
-
|
|
167
49
|
## Constructors
|
|
168
50
|
|
|
169
|
-
###
|
|
51
|
+
### new FeatureConstructor()
|
|
170
52
|
|
|
171
|
-
|
|
53
|
+
> **new FeatureConstructor**(...`features`): [`CustomFeature`](CustomFeature.md)
|
|
172
54
|
|
|
173
55
|
Creates a new feature object from the union of the specified features.
|
|
174
56
|
|
|
@@ -179,15 +61,13 @@ If no arguments are specified, the new feature object will be equivalent to
|
|
|
179
61
|
|
|
180
62
|
#### Parameters
|
|
181
63
|
|
|
182
|
-
|
|
183
|
-
| :------ | :------ |
|
|
184
|
-
| `...features` | [`FeatureElementOrCompatibleArray`](../README.md#featureelementorcompatiblearray)[] |
|
|
64
|
+
• ...**features**: [`FeatureElementOrCompatibleArray`](../type-aliases/FeatureElementOrCompatibleArray.md)[]
|
|
185
65
|
|
|
186
66
|
#### Returns
|
|
187
67
|
|
|
188
68
|
[`CustomFeature`](CustomFeature.md)
|
|
189
69
|
|
|
190
|
-
|
|
70
|
+
#### Example
|
|
191
71
|
|
|
192
72
|
The following statements are equivalent, and will all construct a new feature object
|
|
193
73
|
including both [`ANY_DOCUMENT`](FeatureAll.md#any_document) and [`ANY_WINDOW`](FeatureConstructor.md#any_window).
|
|
@@ -204,23 +84,23 @@ JScrewIt.Feature(JScrewIt.Feature.ANY_DOCUMENT, JScrewIt.Feature.ANY_WINDOW);
|
|
|
204
84
|
JScrewIt.Feature([JScrewIt.Feature.ANY_DOCUMENT, JScrewIt.Feature.ANY_WINDOW]);
|
|
205
85
|
```
|
|
206
86
|
|
|
207
|
-
|
|
87
|
+
#### Throws
|
|
208
88
|
|
|
209
89
|
An error is thrown if any of the specified features are not mutually compatible.
|
|
210
90
|
|
|
211
91
|
#### Inherited from
|
|
212
92
|
|
|
213
|
-
FeatureAll.constructor
|
|
93
|
+
`FeatureAll.constructor`
|
|
214
94
|
|
|
215
95
|
## Properties
|
|
216
96
|
|
|
217
97
|
### ALL
|
|
218
98
|
|
|
219
|
-
|
|
99
|
+
> `readonly` **ALL**: [`FeatureAll`](FeatureAll.md)
|
|
220
100
|
|
|
221
101
|
An immutable mapping of all predefined feature objects accessed by name or alias.
|
|
222
102
|
|
|
223
|
-
|
|
103
|
+
#### Example
|
|
224
104
|
|
|
225
105
|
This will produce an array with the names and aliases of all predefined features.
|
|
226
106
|
|
|
@@ -234,171 +114,187 @@ This will determine if a particular feature object is predefined or not.
|
|
|
234
114
|
featureObj === JScrewIt.Feature.ALL[featureObj.name]
|
|
235
115
|
```
|
|
236
116
|
|
|
237
|
-
|
|
117
|
+
***
|
|
238
118
|
|
|
239
119
|
### ANDRO\_4\_0
|
|
240
120
|
|
|
241
|
-
|
|
121
|
+
> **ANDRO\_4\_0**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
242
122
|
|
|
243
123
|
Features available in Android Browser 4.0.
|
|
244
124
|
|
|
245
125
|
#### Inherited from
|
|
246
126
|
|
|
247
|
-
[FeatureAll](FeatureAll.md).[ANDRO_4_0](FeatureAll.md#andro_4_0)
|
|
127
|
+
[`FeatureAll`](FeatureAll.md).[`ANDRO_4_0`](FeatureAll.md#andro_4_0)
|
|
248
128
|
|
|
249
|
-
|
|
129
|
+
***
|
|
250
130
|
|
|
251
131
|
### ANDRO\_4\_1
|
|
252
132
|
|
|
253
|
-
|
|
133
|
+
> **ANDRO\_4\_1**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
254
134
|
|
|
255
135
|
Features available in Android Browser 4.1 to 4.3.
|
|
256
136
|
|
|
257
137
|
#### Inherited from
|
|
258
138
|
|
|
259
|
-
[FeatureAll](FeatureAll.md).[ANDRO_4_1](FeatureAll.md#andro_4_1)
|
|
139
|
+
[`FeatureAll`](FeatureAll.md).[`ANDRO_4_1`](FeatureAll.md#andro_4_1)
|
|
260
140
|
|
|
261
|
-
|
|
141
|
+
***
|
|
262
142
|
|
|
263
143
|
### ANDRO\_4\_4
|
|
264
144
|
|
|
265
|
-
|
|
145
|
+
> **ANDRO\_4\_4**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
266
146
|
|
|
267
147
|
Features available in Android Browser 4.4.
|
|
268
148
|
|
|
269
149
|
#### Inherited from
|
|
270
150
|
|
|
271
|
-
[FeatureAll](FeatureAll.md).[ANDRO_4_4](FeatureAll.md#andro_4_4)
|
|
151
|
+
[`FeatureAll`](FeatureAll.md).[`ANDRO_4_4`](FeatureAll.md#andro_4_4)
|
|
272
152
|
|
|
273
|
-
|
|
153
|
+
***
|
|
274
154
|
|
|
275
155
|
### ANY\_DOCUMENT
|
|
276
156
|
|
|
277
|
-
|
|
157
|
+
> **ANY\_DOCUMENT**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
278
158
|
|
|
279
159
|
Existence of the global object document whose string representation starts with "\[object " and ends with "Document\]".
|
|
280
160
|
|
|
281
|
-
|
|
161
|
+
#### Remarks
|
|
282
162
|
|
|
283
163
|
Available in Chrome, Edge, Firefox, Internet Explorer, Safari, Opera, and Android Browser. This feature is not available inside web workers.
|
|
284
164
|
|
|
285
165
|
#### Inherited from
|
|
286
166
|
|
|
287
|
-
[FeatureAll](FeatureAll.md).[ANY_DOCUMENT](FeatureAll.md#any_document)
|
|
167
|
+
[`FeatureAll`](FeatureAll.md).[`ANY_DOCUMENT`](FeatureAll.md#any_document)
|
|
288
168
|
|
|
289
|
-
|
|
169
|
+
***
|
|
290
170
|
|
|
291
171
|
### ANY\_WINDOW
|
|
292
172
|
|
|
293
|
-
|
|
173
|
+
> **ANY\_WINDOW**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
294
174
|
|
|
295
175
|
Existence of the global object self whose string representation starts with "\[object " and ends with "Window\]".
|
|
296
176
|
|
|
297
|
-
|
|
177
|
+
#### Remarks
|
|
298
178
|
|
|
299
179
|
Available in Chrome, Edge, Firefox, Internet Explorer, Safari, Opera, and Android Browser. This feature is not available inside web workers.
|
|
300
180
|
|
|
301
181
|
#### Inherited from
|
|
302
182
|
|
|
303
|
-
[FeatureAll](FeatureAll.md).[ANY_WINDOW](FeatureAll.md#any_window)
|
|
183
|
+
[`FeatureAll`](FeatureAll.md).[`ANY_WINDOW`](FeatureAll.md#any_window)
|
|
304
184
|
|
|
305
|
-
|
|
185
|
+
***
|
|
306
186
|
|
|
307
187
|
### ARRAY\_ITERATOR
|
|
308
188
|
|
|
309
|
-
|
|
189
|
+
> **ARRAY\_ITERATOR**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
310
190
|
|
|
311
191
|
The property that the string representation of Array.prototype.entries\(\) starts with "\[object Array" and ends with "\]" at index 21 or 22.
|
|
312
192
|
|
|
313
|
-
|
|
193
|
+
#### Remarks
|
|
314
194
|
|
|
315
195
|
Available in Chrome, Edge, Firefox, Safari 7.1+, Opera, and Node.js 0.12+.
|
|
316
196
|
|
|
317
197
|
#### Inherited from
|
|
318
198
|
|
|
319
|
-
[FeatureAll](FeatureAll.md).[ARRAY_ITERATOR](FeatureAll.md#array_iterator)
|
|
199
|
+
[`FeatureAll`](FeatureAll.md).[`ARRAY_ITERATOR`](FeatureAll.md#array_iterator)
|
|
320
200
|
|
|
321
|
-
|
|
201
|
+
***
|
|
322
202
|
|
|
323
203
|
### ARROW
|
|
324
204
|
|
|
325
|
-
|
|
205
|
+
> **ARROW**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
326
206
|
|
|
327
207
|
Support for arrow functions.
|
|
328
208
|
|
|
329
|
-
|
|
209
|
+
#### Remarks
|
|
330
210
|
|
|
331
|
-
Available in Chrome, Edge, Firefox, Safari 10+, Opera, and Node.js 4+.
|
|
211
|
+
Available in Chrome, Edge, Firefox, Safari 10.0+, Opera, and Node.js 4+.
|
|
332
212
|
|
|
333
213
|
#### Inherited from
|
|
334
214
|
|
|
335
|
-
[FeatureAll](FeatureAll.md).[ARROW](FeatureAll.md#arrow)
|
|
215
|
+
[`FeatureAll`](FeatureAll.md).[`ARROW`](FeatureAll.md#arrow)
|
|
336
216
|
|
|
337
|
-
|
|
217
|
+
***
|
|
218
|
+
|
|
219
|
+
### ASYNC\_FUNCTION
|
|
220
|
+
|
|
221
|
+
> **ASYNC\_FUNCTION**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
222
|
+
|
|
223
|
+
Support for async functions, which return Promise object.
|
|
224
|
+
|
|
225
|
+
#### Remarks
|
|
226
|
+
|
|
227
|
+
Available in Chrome, Edge, Firefox, Safari 10.1+, Opera, and Node.js 7.6+.
|
|
228
|
+
|
|
229
|
+
#### Inherited from
|
|
230
|
+
|
|
231
|
+
[`FeatureAll`](FeatureAll.md).[`ASYNC_FUNCTION`](FeatureAll.md#async_function)
|
|
232
|
+
|
|
233
|
+
***
|
|
338
234
|
|
|
339
235
|
### AT
|
|
340
236
|
|
|
341
|
-
|
|
237
|
+
> **AT**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
342
238
|
|
|
343
239
|
Existence of the native function Array.prototype.at.
|
|
344
240
|
|
|
345
|
-
|
|
241
|
+
#### Remarks
|
|
346
242
|
|
|
347
243
|
Available in Chrome, Edge, Firefox, Safari 15.4+, Opera, and Node.js 16.6+.
|
|
348
244
|
|
|
349
245
|
#### Inherited from
|
|
350
246
|
|
|
351
|
-
[FeatureAll](FeatureAll.md).[AT](FeatureAll.md#at)
|
|
247
|
+
[`FeatureAll`](FeatureAll.md).[`AT`](FeatureAll.md#at)
|
|
352
248
|
|
|
353
|
-
|
|
249
|
+
***
|
|
354
250
|
|
|
355
251
|
### ATOB
|
|
356
252
|
|
|
357
|
-
|
|
253
|
+
> **ATOB**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
358
254
|
|
|
359
255
|
Existence of the global functions atob and btoa.
|
|
360
256
|
|
|
361
|
-
|
|
257
|
+
#### Remarks
|
|
362
258
|
|
|
363
|
-
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.
|
|
259
|
+
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.
|
|
364
260
|
|
|
365
261
|
#### Inherited from
|
|
366
262
|
|
|
367
|
-
[FeatureAll](FeatureAll.md).[ATOB](FeatureAll.md#atob)
|
|
263
|
+
[`FeatureAll`](FeatureAll.md).[`ATOB`](FeatureAll.md#atob)
|
|
368
264
|
|
|
369
|
-
|
|
265
|
+
***
|
|
370
266
|
|
|
371
267
|
### AUTO
|
|
372
268
|
|
|
373
|
-
|
|
269
|
+
> **AUTO**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
374
270
|
|
|
375
271
|
Features available in the current environment.
|
|
376
272
|
|
|
377
273
|
#### Inherited from
|
|
378
274
|
|
|
379
|
-
[FeatureAll](FeatureAll.md).[AUTO](FeatureAll.md#auto)
|
|
275
|
+
[`FeatureAll`](FeatureAll.md).[`AUTO`](FeatureAll.md#auto)
|
|
380
276
|
|
|
381
|
-
|
|
277
|
+
***
|
|
382
278
|
|
|
383
279
|
### BARPROP
|
|
384
280
|
|
|
385
|
-
|
|
281
|
+
> **BARPROP**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
386
282
|
|
|
387
283
|
Existence of the global object statusbar having the string representation "\[object BarProp\]".
|
|
388
284
|
|
|
389
|
-
|
|
285
|
+
#### Remarks
|
|
390
286
|
|
|
391
287
|
Available in Chrome, Edge, Firefox, Safari, Opera, and Android Browser 4.4. This feature is not available inside web workers.
|
|
392
288
|
|
|
393
289
|
#### Inherited from
|
|
394
290
|
|
|
395
|
-
[FeatureAll](FeatureAll.md).[BARPROP](FeatureAll.md#barprop)
|
|
291
|
+
[`FeatureAll`](FeatureAll.md).[`BARPROP`](FeatureAll.md#barprop)
|
|
396
292
|
|
|
397
|
-
|
|
293
|
+
***
|
|
398
294
|
|
|
399
295
|
### BROWSER
|
|
400
296
|
|
|
401
|
-
|
|
297
|
+
> **BROWSER**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
402
298
|
|
|
403
299
|
Features available in all browsers.
|
|
404
300
|
|
|
@@ -406,29 +302,45 @@ No support for Node.js.
|
|
|
406
302
|
|
|
407
303
|
#### Inherited from
|
|
408
304
|
|
|
409
|
-
[FeatureAll](FeatureAll.md).[BROWSER](FeatureAll.md#browser)
|
|
305
|
+
[`FeatureAll`](FeatureAll.md).[`BROWSER`](FeatureAll.md#browser)
|
|
306
|
+
|
|
307
|
+
***
|
|
308
|
+
|
|
309
|
+
### CALL\_ON\_GLOBAL
|
|
310
|
+
|
|
311
|
+
> **CALL\_ON\_GLOBAL**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
312
|
+
|
|
313
|
+
The ability to call a function on the global object when invoking Function.prototype.call without binding.
|
|
314
|
+
|
|
315
|
+
#### Remarks
|
|
316
|
+
|
|
317
|
+
Available in Android Browser before 4.1.
|
|
318
|
+
|
|
319
|
+
#### Inherited from
|
|
410
320
|
|
|
411
|
-
|
|
321
|
+
[`FeatureAll`](FeatureAll.md).[`CALL_ON_GLOBAL`](FeatureAll.md#call_on_global)
|
|
322
|
+
|
|
323
|
+
***
|
|
412
324
|
|
|
413
325
|
### CAPITAL\_HTML
|
|
414
326
|
|
|
415
|
-
|
|
327
|
+
> **CAPITAL\_HTML**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
416
328
|
|
|
417
329
|
The property that the various string methods returning HTML code such as String.prototype.big or String.prototype.link have both the tag name and attributes written in capital letters.
|
|
418
330
|
|
|
419
|
-
|
|
331
|
+
#### Remarks
|
|
420
332
|
|
|
421
333
|
Available in Internet Explorer.
|
|
422
334
|
|
|
423
335
|
#### Inherited from
|
|
424
336
|
|
|
425
|
-
[FeatureAll](FeatureAll.md).[CAPITAL_HTML](FeatureAll.md#capital_html)
|
|
337
|
+
[`FeatureAll`](FeatureAll.md).[`CAPITAL_HTML`](FeatureAll.md#capital_html)
|
|
426
338
|
|
|
427
|
-
|
|
339
|
+
***
|
|
428
340
|
|
|
429
341
|
### CHROME
|
|
430
342
|
|
|
431
|
-
|
|
343
|
+
> **CHROME**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
432
344
|
|
|
433
345
|
Features available in the current stable versions of Chrome, Edge and Opera.
|
|
434
346
|
|
|
@@ -436,33 +348,33 @@ An alias for `CHROME_122`.
|
|
|
436
348
|
|
|
437
349
|
#### Inherited from
|
|
438
350
|
|
|
439
|
-
[FeatureAll](FeatureAll.md).[CHROME](FeatureAll.md#chrome)
|
|
351
|
+
[`FeatureAll`](FeatureAll.md).[`CHROME`](FeatureAll.md#chrome)
|
|
440
352
|
|
|
441
|
-
|
|
353
|
+
***
|
|
442
354
|
|
|
443
355
|
### CHROME\_122
|
|
444
356
|
|
|
445
|
-
|
|
357
|
+
> **CHROME\_122**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
446
358
|
|
|
447
359
|
Features available in Chrome 122, Edge 122 and Opera 108 or later.
|
|
448
360
|
|
|
449
|
-
|
|
361
|
+
#### Remarks
|
|
450
362
|
|
|
451
363
|
This feature may be replaced or removed in the near future when current browser versions become obsolete. Use `CHROME` or `CHROME_PREV` instead of `CHROME_122` for long term support.
|
|
452
364
|
|
|
453
|
-
|
|
365
|
+
#### See
|
|
454
366
|
|
|
455
367
|
[Engine Support Policy](https://github.com/fasttime/JScrewIt#engine-support-policy)
|
|
456
368
|
|
|
457
369
|
#### Inherited from
|
|
458
370
|
|
|
459
|
-
[FeatureAll](FeatureAll.md).[CHROME_122](FeatureAll.md#chrome_122)
|
|
371
|
+
[`FeatureAll`](FeatureAll.md).[`CHROME_122`](FeatureAll.md#chrome_122)
|
|
460
372
|
|
|
461
|
-
|
|
373
|
+
***
|
|
462
374
|
|
|
463
375
|
### CHROME\_PREV
|
|
464
376
|
|
|
465
|
-
|
|
377
|
+
> **CHROME\_PREV**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
466
378
|
|
|
467
379
|
Features available in the previous to current versions of Chrome and Edge.
|
|
468
380
|
|
|
@@ -470,13 +382,13 @@ An alias for `CHROME_122`.
|
|
|
470
382
|
|
|
471
383
|
#### Inherited from
|
|
472
384
|
|
|
473
|
-
[FeatureAll](FeatureAll.md).[CHROME_PREV](FeatureAll.md#chrome_prev)
|
|
385
|
+
[`FeatureAll`](FeatureAll.md).[`CHROME_PREV`](FeatureAll.md#chrome_prev)
|
|
474
386
|
|
|
475
|
-
|
|
387
|
+
***
|
|
476
388
|
|
|
477
389
|
### COMPACT
|
|
478
390
|
|
|
479
|
-
|
|
391
|
+
> **COMPACT**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
480
392
|
|
|
481
393
|
All new browsers' features.
|
|
482
394
|
|
|
@@ -484,197 +396,231 @@ No support for Node.js and older browsers like Internet Explorer, Safari 17.3 or
|
|
|
484
396
|
|
|
485
397
|
#### Inherited from
|
|
486
398
|
|
|
487
|
-
[FeatureAll](FeatureAll.md).[COMPACT](FeatureAll.md#compact)
|
|
399
|
+
[`FeatureAll`](FeatureAll.md).[`COMPACT`](FeatureAll.md#compact)
|
|
488
400
|
|
|
489
|
-
|
|
401
|
+
***
|
|
490
402
|
|
|
491
403
|
### CONSOLE
|
|
492
404
|
|
|
493
|
-
|
|
405
|
+
> **CONSOLE**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
494
406
|
|
|
495
407
|
Existence of the global object console having the string representation "\[object Console\]".
|
|
496
408
|
|
|
497
409
|
This feature may become unavailable when certain browser extensions are active.
|
|
498
410
|
|
|
499
|
-
|
|
411
|
+
#### Remarks
|
|
500
412
|
|
|
501
413
|
Available in Internet Explorer 10+, Safari before 14.1, and Android Browser. This feature is not available inside web workers in Safari before 7.1 and Android Browser 4.4.
|
|
502
414
|
|
|
503
415
|
#### Inherited from
|
|
504
416
|
|
|
505
|
-
[FeatureAll](FeatureAll.md).[CONSOLE](FeatureAll.md#console)
|
|
417
|
+
[`FeatureAll`](FeatureAll.md).[`CONSOLE`](FeatureAll.md#console)
|
|
418
|
+
|
|
419
|
+
***
|
|
420
|
+
|
|
421
|
+
### CREATE\_ELEMENT
|
|
506
422
|
|
|
507
|
-
|
|
423
|
+
> **CREATE\_ELEMENT**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
424
|
+
|
|
425
|
+
Existence of the function document.createElement.
|
|
426
|
+
|
|
427
|
+
An alias for `ANY_DOCUMENT`.
|
|
428
|
+
|
|
429
|
+
#### Inherited from
|
|
430
|
+
|
|
431
|
+
[`FeatureAll`](FeatureAll.md).[`CREATE_ELEMENT`](FeatureAll.md#create_element)
|
|
432
|
+
|
|
433
|
+
***
|
|
508
434
|
|
|
509
435
|
### DEFAULT
|
|
510
436
|
|
|
511
|
-
|
|
437
|
+
> **DEFAULT**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
512
438
|
|
|
513
439
|
Minimum feature level, compatible with all supported engines in all environments.
|
|
514
440
|
|
|
515
441
|
#### Inherited from
|
|
516
442
|
|
|
517
|
-
[FeatureAll](FeatureAll.md).[DEFAULT](FeatureAll.md#default)
|
|
443
|
+
[`FeatureAll`](FeatureAll.md).[`DEFAULT`](FeatureAll.md#default)
|
|
518
444
|
|
|
519
|
-
|
|
445
|
+
***
|
|
520
446
|
|
|
521
447
|
### DOCUMENT
|
|
522
448
|
|
|
523
|
-
|
|
449
|
+
> **DOCUMENT**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
524
450
|
|
|
525
451
|
Existence of the global object document having the string representation "\[object Document\]".
|
|
526
452
|
|
|
527
|
-
|
|
453
|
+
#### Remarks
|
|
528
454
|
|
|
529
455
|
Available in Internet Explorer before 11. This feature is not available inside web workers.
|
|
530
456
|
|
|
531
457
|
#### Inherited from
|
|
532
458
|
|
|
533
|
-
[FeatureAll](FeatureAll.md).[DOCUMENT](FeatureAll.md#document)
|
|
459
|
+
[`FeatureAll`](FeatureAll.md).[`DOCUMENT`](FeatureAll.md#document)
|
|
534
460
|
|
|
535
|
-
|
|
461
|
+
***
|
|
536
462
|
|
|
537
463
|
### DOMWINDOW
|
|
538
464
|
|
|
539
|
-
|
|
465
|
+
> **DOMWINDOW**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
540
466
|
|
|
541
467
|
Existence of the global object self having the string representation "\[object DOMWindow\]".
|
|
542
468
|
|
|
543
|
-
|
|
469
|
+
#### Remarks
|
|
544
470
|
|
|
545
471
|
Available in Android Browser before 4.4. This feature is not available inside web workers.
|
|
546
472
|
|
|
547
473
|
#### Inherited from
|
|
548
474
|
|
|
549
|
-
[FeatureAll](FeatureAll.md).[DOMWINDOW](FeatureAll.md#domwindow)
|
|
475
|
+
[`FeatureAll`](FeatureAll.md).[`DOMWINDOW`](FeatureAll.md#domwindow)
|
|
550
476
|
|
|
551
|
-
|
|
477
|
+
***
|
|
552
478
|
|
|
553
479
|
### ELEMENTARY
|
|
554
480
|
|
|
555
|
-
|
|
481
|
+
> `readonly` **ELEMENTARY**: readonly [`ElementaryFeature`](ElementaryFeature.md)[]
|
|
556
482
|
|
|
557
483
|
An immutable array of all elementary feature objects ordered by name.
|
|
558
484
|
|
|
559
|
-
|
|
485
|
+
***
|
|
560
486
|
|
|
561
487
|
### ESC\_HTML\_ALL
|
|
562
488
|
|
|
563
|
-
|
|
489
|
+
> **ESC\_HTML\_ALL**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
564
490
|
|
|
565
491
|
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.
|
|
566
492
|
|
|
567
|
-
|
|
493
|
+
#### Remarks
|
|
568
494
|
|
|
569
495
|
Available in Android Browser and Node.js before 0.12.
|
|
570
496
|
|
|
571
497
|
#### Inherited from
|
|
572
498
|
|
|
573
|
-
[FeatureAll](FeatureAll.md).[ESC_HTML_ALL](FeatureAll.md#esc_html_all)
|
|
499
|
+
[`FeatureAll`](FeatureAll.md).[`ESC_HTML_ALL`](FeatureAll.md#esc_html_all)
|
|
574
500
|
|
|
575
|
-
|
|
501
|
+
***
|
|
576
502
|
|
|
577
503
|
### ESC\_HTML\_QUOT
|
|
578
504
|
|
|
579
|
-
|
|
505
|
+
> **ESC\_HTML\_QUOT**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
580
506
|
|
|
581
507
|
The property that double quotation marks in the argument of String.prototype.fontcolor are escaped as "\"".
|
|
582
508
|
|
|
583
|
-
|
|
509
|
+
#### Remarks
|
|
584
510
|
|
|
585
511
|
Available in Chrome, Edge, Firefox, Safari, Opera, Android Browser, and Node.js.
|
|
586
512
|
|
|
587
513
|
#### Inherited from
|
|
588
514
|
|
|
589
|
-
[FeatureAll](FeatureAll.md).[ESC_HTML_QUOT](FeatureAll.md#esc_html_quot)
|
|
515
|
+
[`FeatureAll`](FeatureAll.md).[`ESC_HTML_QUOT`](FeatureAll.md#esc_html_quot)
|
|
590
516
|
|
|
591
|
-
|
|
517
|
+
***
|
|
592
518
|
|
|
593
519
|
### ESC\_HTML\_QUOT\_ONLY
|
|
594
520
|
|
|
595
|
-
|
|
521
|
+
> **ESC\_HTML\_QUOT\_ONLY**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
596
522
|
|
|
597
523
|
The property that only double quotation marks and no other characters in the argument of String.prototype.fontcolor are escaped into HTML entities.
|
|
598
524
|
|
|
599
|
-
|
|
525
|
+
#### Remarks
|
|
600
526
|
|
|
601
527
|
Available in Chrome, Edge, Firefox, Safari, Opera, and Node.js 0.12+.
|
|
602
528
|
|
|
603
529
|
#### Inherited from
|
|
604
530
|
|
|
605
|
-
[FeatureAll](FeatureAll.md).[ESC_HTML_QUOT_ONLY](FeatureAll.md#esc_html_quot_only)
|
|
531
|
+
[`FeatureAll`](FeatureAll.md).[`ESC_HTML_QUOT_ONLY`](FeatureAll.md#esc_html_quot_only)
|
|
606
532
|
|
|
607
|
-
|
|
533
|
+
***
|
|
608
534
|
|
|
609
535
|
### ESC\_REGEXP\_LF
|
|
610
536
|
|
|
611
|
-
|
|
537
|
+
> **ESC\_REGEXP\_LF**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
612
538
|
|
|
613
539
|
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.
|
|
614
540
|
|
|
615
|
-
|
|
541
|
+
#### Remarks
|
|
616
542
|
|
|
617
543
|
Available in Chrome, Edge, Firefox, Internet Explorer, Safari, Opera, and Node.js 12+.
|
|
618
544
|
|
|
619
545
|
#### Inherited from
|
|
620
546
|
|
|
621
|
-
[FeatureAll](FeatureAll.md).[ESC_REGEXP_LF](FeatureAll.md#esc_regexp_lf)
|
|
547
|
+
[`FeatureAll`](FeatureAll.md).[`ESC_REGEXP_LF`](FeatureAll.md#esc_regexp_lf)
|
|
622
548
|
|
|
623
|
-
|
|
549
|
+
***
|
|
624
550
|
|
|
625
551
|
### ESC\_REGEXP\_SLASH
|
|
626
552
|
|
|
627
|
-
|
|
553
|
+
> **ESC\_REGEXP\_SLASH**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
628
554
|
|
|
629
555
|
Having regular expressions created with the RegExp constructor use escape sequences starting with a backslash to format slashes \("/"\) in their string representation.
|
|
630
556
|
|
|
631
|
-
|
|
557
|
+
#### Remarks
|
|
632
558
|
|
|
633
559
|
Available in Chrome, Edge, Firefox, Internet Explorer, Safari, Opera, and Node.js 4+.
|
|
634
560
|
|
|
635
561
|
#### Inherited from
|
|
636
562
|
|
|
637
|
-
[FeatureAll](FeatureAll.md).[ESC_REGEXP_SLASH](FeatureAll.md#esc_regexp_slash)
|
|
563
|
+
[`FeatureAll`](FeatureAll.md).[`ESC_REGEXP_SLASH`](FeatureAll.md#esc_regexp_slash)
|
|
638
564
|
|
|
639
|
-
|
|
565
|
+
***
|
|
640
566
|
|
|
641
567
|
### FF
|
|
642
568
|
|
|
643
|
-
|
|
569
|
+
> **FF**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
644
570
|
|
|
645
571
|
Features available in the current stable version of Firefox.
|
|
646
572
|
|
|
647
|
-
An alias for `
|
|
573
|
+
An alias for `FF_131`.
|
|
574
|
+
|
|
575
|
+
#### Inherited from
|
|
576
|
+
|
|
577
|
+
[`FeatureAll`](FeatureAll.md).[`FF`](FeatureAll.md#ff)
|
|
578
|
+
|
|
579
|
+
***
|
|
580
|
+
|
|
581
|
+
### FF\_131
|
|
582
|
+
|
|
583
|
+
> **FF\_131**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
584
|
+
|
|
585
|
+
Features available in Firefox 131 or later.
|
|
586
|
+
|
|
587
|
+
#### Remarks
|
|
588
|
+
|
|
589
|
+
This feature may be replaced or removed in the near future when current browser versions become obsolete. Use `FF` instead of `FF_131` for long term support.
|
|
590
|
+
|
|
591
|
+
#### See
|
|
592
|
+
|
|
593
|
+
[Engine Support Policy](https://github.com/fasttime/JScrewIt#engine-support-policy)
|
|
648
594
|
|
|
649
595
|
#### Inherited from
|
|
650
596
|
|
|
651
|
-
[FeatureAll](FeatureAll.md).[
|
|
597
|
+
[`FeatureAll`](FeatureAll.md).[`FF_131`](FeatureAll.md#ff_131)
|
|
652
598
|
|
|
653
|
-
|
|
599
|
+
***
|
|
654
600
|
|
|
655
601
|
### FF\_90
|
|
656
602
|
|
|
657
|
-
|
|
603
|
+
> **FF\_90**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
658
604
|
|
|
659
|
-
Features available in Firefox 90
|
|
605
|
+
Features available in Firefox 90 to 130.
|
|
660
606
|
|
|
661
|
-
|
|
607
|
+
#### Remarks
|
|
662
608
|
|
|
663
|
-
This feature may be replaced or removed in the near future when current browser versions become obsolete. Use `
|
|
609
|
+
This feature may be replaced or removed in the near future when current browser versions become obsolete. Use `FF_ESR` or `FF_PREV` instead of `FF_90` for long term support.
|
|
664
610
|
|
|
665
|
-
|
|
611
|
+
#### See
|
|
666
612
|
|
|
667
613
|
[Engine Support Policy](https://github.com/fasttime/JScrewIt#engine-support-policy)
|
|
668
614
|
|
|
669
615
|
#### Inherited from
|
|
670
616
|
|
|
671
|
-
[FeatureAll](FeatureAll.md).[FF_90](FeatureAll.md#ff_90)
|
|
617
|
+
[`FeatureAll`](FeatureAll.md).[`FF_90`](FeatureAll.md#ff_90)
|
|
672
618
|
|
|
673
|
-
|
|
619
|
+
***
|
|
674
620
|
|
|
675
621
|
### FF\_ESR
|
|
676
622
|
|
|
677
|
-
|
|
623
|
+
> **FF\_ESR**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
678
624
|
|
|
679
625
|
Features available in the current version of Firefox ESR.
|
|
680
626
|
|
|
@@ -682,13 +628,13 @@ An alias for `FF_90`.
|
|
|
682
628
|
|
|
683
629
|
#### Inherited from
|
|
684
630
|
|
|
685
|
-
[FeatureAll](FeatureAll.md).[FF_ESR](FeatureAll.md#ff_esr)
|
|
631
|
+
[`FeatureAll`](FeatureAll.md).[`FF_ESR`](FeatureAll.md#ff_esr)
|
|
686
632
|
|
|
687
|
-
|
|
633
|
+
***
|
|
688
634
|
|
|
689
635
|
### FF\_PREV
|
|
690
636
|
|
|
691
|
-
|
|
637
|
+
> **FF\_PREV**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
692
638
|
|
|
693
639
|
Features available in the previous to current version of Firefox.
|
|
694
640
|
|
|
@@ -696,983 +642,1077 @@ An alias for `FF_90`.
|
|
|
696
642
|
|
|
697
643
|
#### Inherited from
|
|
698
644
|
|
|
699
|
-
[FeatureAll](FeatureAll.md).[FF_PREV](FeatureAll.md#ff_prev)
|
|
645
|
+
[`FeatureAll`](FeatureAll.md).[`FF_PREV`](FeatureAll.md#ff_prev)
|
|
700
646
|
|
|
701
|
-
|
|
647
|
+
***
|
|
702
648
|
|
|
703
649
|
### FF\_SRC
|
|
704
650
|
|
|
705
|
-
|
|
651
|
+
> **FF\_SRC**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
706
652
|
|
|
707
653
|
A string representation of native functions typical for Firefox and Safari.
|
|
708
654
|
|
|
709
655
|
Remarkable traits are the lack of line feed characters at the beginning and at the end of the string and the presence of a line feed followed by four whitespaces \("\\n "\) before the "\[native code\]" sequence.
|
|
710
656
|
|
|
711
|
-
|
|
657
|
+
#### Remarks
|
|
712
658
|
|
|
713
659
|
Available in Firefox and Safari.
|
|
714
660
|
|
|
715
661
|
#### Inherited from
|
|
716
662
|
|
|
717
|
-
[FeatureAll](FeatureAll.md).[FF_SRC](FeatureAll.md#ff_src)
|
|
663
|
+
[`FeatureAll`](FeatureAll.md).[`FF_SRC`](FeatureAll.md#ff_src)
|
|
718
664
|
|
|
719
|
-
|
|
665
|
+
***
|
|
720
666
|
|
|
721
667
|
### FILL
|
|
722
668
|
|
|
723
|
-
|
|
669
|
+
> **FILL**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
724
670
|
|
|
725
671
|
Existence of the native function Array.prototype.fill.
|
|
726
672
|
|
|
727
|
-
|
|
673
|
+
#### Remarks
|
|
728
674
|
|
|
729
675
|
Available in Chrome, Edge, Firefox, Safari 7.1+, Opera, and Node.js 4+.
|
|
730
676
|
|
|
731
677
|
#### Inherited from
|
|
732
678
|
|
|
733
|
-
[FeatureAll](FeatureAll.md).[FILL](FeatureAll.md#fill)
|
|
679
|
+
[`FeatureAll`](FeatureAll.md).[`FILL`](FeatureAll.md#fill)
|
|
734
680
|
|
|
735
|
-
|
|
681
|
+
***
|
|
736
682
|
|
|
737
683
|
### FLAT
|
|
738
684
|
|
|
739
|
-
|
|
685
|
+
> **FLAT**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
740
686
|
|
|
741
687
|
Existence of the native function Array.prototype.flat.
|
|
742
688
|
|
|
743
|
-
|
|
689
|
+
#### Remarks
|
|
744
690
|
|
|
745
691
|
Available in Chrome, Edge, Firefox, Safari 12+, Opera, and Node.js 11+.
|
|
746
692
|
|
|
747
693
|
#### Inherited from
|
|
748
694
|
|
|
749
|
-
[FeatureAll](FeatureAll.md).[FLAT](FeatureAll.md#flat)
|
|
695
|
+
[`FeatureAll`](FeatureAll.md).[`FLAT`](FeatureAll.md#flat)
|
|
750
696
|
|
|
751
|
-
|
|
697
|
+
***
|
|
698
|
+
|
|
699
|
+
### FORMS
|
|
700
|
+
|
|
701
|
+
> **FORMS**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
702
|
+
|
|
703
|
+
Existence of the object document.forms with string representation "\[object HTMLCollection\]".
|
|
704
|
+
|
|
705
|
+
An alias for `ANY_DOCUMENT`.
|
|
706
|
+
|
|
707
|
+
#### Inherited from
|
|
708
|
+
|
|
709
|
+
[`FeatureAll`](FeatureAll.md).[`FORMS`](FeatureAll.md#forms)
|
|
710
|
+
|
|
711
|
+
***
|
|
752
712
|
|
|
753
713
|
### FROM\_CODE\_POINT
|
|
754
714
|
|
|
755
|
-
|
|
715
|
+
> **FROM\_CODE\_POINT**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
756
716
|
|
|
757
717
|
Existence of the function String.fromCodePoint.
|
|
758
718
|
|
|
759
|
-
|
|
719
|
+
#### Remarks
|
|
760
720
|
|
|
761
721
|
Available in Chrome, Edge, Firefox, Safari 9+, Opera, and Node.js 4+.
|
|
762
722
|
|
|
763
723
|
#### Inherited from
|
|
764
724
|
|
|
765
|
-
[FeatureAll](FeatureAll.md).[FROM_CODE_POINT](FeatureAll.md#from_code_point)
|
|
725
|
+
[`FeatureAll`](FeatureAll.md).[`FROM_CODE_POINT`](FeatureAll.md#from_code_point)
|
|
766
726
|
|
|
767
|
-
|
|
727
|
+
***
|
|
768
728
|
|
|
769
729
|
### FUNCTION\_19\_LF
|
|
770
730
|
|
|
771
|
-
|
|
731
|
+
> **FUNCTION\_19\_LF**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
772
732
|
|
|
773
733
|
A string representation of dynamically generated functions where the character at index 19 is a line feed \("\\n"\).
|
|
774
734
|
|
|
775
|
-
|
|
735
|
+
#### Remarks
|
|
776
736
|
|
|
777
737
|
Available in Chrome, Edge, Firefox, Safari 17.4+, Opera, and Node.js 10+.
|
|
778
738
|
|
|
779
739
|
#### Inherited from
|
|
780
740
|
|
|
781
|
-
[FeatureAll](FeatureAll.md).[FUNCTION_19_LF](FeatureAll.md#function_19_lf)
|
|
741
|
+
[`FeatureAll`](FeatureAll.md).[`FUNCTION_19_LF`](FeatureAll.md#function_19_lf)
|
|
782
742
|
|
|
783
|
-
|
|
743
|
+
***
|
|
784
744
|
|
|
785
745
|
### FUNCTION\_22\_LF
|
|
786
746
|
|
|
787
|
-
|
|
747
|
+
> **FUNCTION\_22\_LF**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
788
748
|
|
|
789
749
|
A string representation of dynamically generated functions where the character at index 22 is a line feed \("\\n"\).
|
|
790
750
|
|
|
791
|
-
|
|
751
|
+
#### Remarks
|
|
792
752
|
|
|
793
753
|
Available in Internet Explorer, Safari 9+ before 17.4, Android Browser, and Node.js before 10.
|
|
794
754
|
|
|
795
755
|
#### Inherited from
|
|
796
756
|
|
|
797
|
-
[FeatureAll](FeatureAll.md).[FUNCTION_22_LF](FeatureAll.md#function_22_lf)
|
|
757
|
+
[`FeatureAll`](FeatureAll.md).[`FUNCTION_22_LF`](FeatureAll.md#function_22_lf)
|
|
798
758
|
|
|
799
|
-
|
|
759
|
+
***
|
|
800
760
|
|
|
801
761
|
### GENERIC\_ARRAY\_TO\_STRING
|
|
802
762
|
|
|
803
|
-
|
|
763
|
+
> **GENERIC\_ARRAY\_TO\_STRING**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
804
764
|
|
|
805
765
|
Ability to call Array.prototype.toString with a non-array binding.
|
|
806
766
|
|
|
807
|
-
|
|
767
|
+
#### Remarks
|
|
808
768
|
|
|
809
769
|
Available in Chrome, Edge, Firefox, Internet Explorer, Safari, Opera, Android Browser 4.1+, and Node.js.
|
|
810
770
|
|
|
811
771
|
#### Inherited from
|
|
812
772
|
|
|
813
|
-
[FeatureAll](FeatureAll.md).[GENERIC_ARRAY_TO_STRING](FeatureAll.md#generic_array_to_string)
|
|
773
|
+
[`FeatureAll`](FeatureAll.md).[`GENERIC_ARRAY_TO_STRING`](FeatureAll.md#generic_array_to_string)
|
|
814
774
|
|
|
815
|
-
|
|
775
|
+
***
|
|
816
776
|
|
|
817
777
|
### GLOBAL\_UNDEFINED
|
|
818
778
|
|
|
819
|
-
|
|
779
|
+
> **GLOBAL\_UNDEFINED**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
820
780
|
|
|
821
781
|
Having the global function toString return the string "\[object Undefined\]" when invoked without a binding.
|
|
822
782
|
|
|
823
|
-
|
|
783
|
+
#### Remarks
|
|
824
784
|
|
|
825
785
|
Available in Chrome, Edge, Firefox, Safari, Opera, and Node.js.
|
|
826
786
|
|
|
827
787
|
#### Inherited from
|
|
828
788
|
|
|
829
|
-
[FeatureAll](FeatureAll.md).[GLOBAL_UNDEFINED](FeatureAll.md#global_undefined)
|
|
789
|
+
[`FeatureAll`](FeatureAll.md).[`GLOBAL_UNDEFINED`](FeatureAll.md#global_undefined)
|
|
830
790
|
|
|
831
|
-
|
|
791
|
+
***
|
|
832
792
|
|
|
833
793
|
### GMT
|
|
834
794
|
|
|
835
|
-
|
|
795
|
+
> **GMT**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
836
796
|
|
|
837
797
|
Presence of the text "GMT" after the first 25 characters in the string returned by Date\(\).
|
|
838
798
|
|
|
839
799
|
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.
|
|
840
800
|
|
|
841
|
-
|
|
801
|
+
#### Remarks
|
|
842
802
|
|
|
843
803
|
Available in Chrome, Edge, Firefox, Internet Explorer 11, Safari, Opera, Android Browser, and Node.js.
|
|
844
804
|
|
|
845
805
|
#### Inherited from
|
|
846
806
|
|
|
847
|
-
[FeatureAll](FeatureAll.md).[GMT](FeatureAll.md#gmt)
|
|
807
|
+
[`FeatureAll`](FeatureAll.md).[`GMT`](FeatureAll.md#gmt)
|
|
848
808
|
|
|
849
|
-
|
|
809
|
+
***
|
|
850
810
|
|
|
851
811
|
### HISTORY
|
|
852
812
|
|
|
853
|
-
|
|
813
|
+
> **HISTORY**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
854
814
|
|
|
855
815
|
Existence of the global object history having the string representation "\[object History\]".
|
|
856
816
|
|
|
857
|
-
|
|
817
|
+
#### Remarks
|
|
858
818
|
|
|
859
819
|
Available in Chrome, Edge, Firefox, Internet Explorer, Safari, Opera, and Android Browser. This feature is not available inside web workers.
|
|
860
820
|
|
|
861
821
|
#### Inherited from
|
|
862
822
|
|
|
863
|
-
[FeatureAll](FeatureAll.md).[HISTORY](FeatureAll.md#history)
|
|
823
|
+
[`FeatureAll`](FeatureAll.md).[`HISTORY`](FeatureAll.md#history)
|
|
864
824
|
|
|
865
|
-
|
|
825
|
+
***
|
|
866
826
|
|
|
867
827
|
### HTMLAUDIOELEMENT
|
|
868
828
|
|
|
869
|
-
|
|
829
|
+
> **HTMLAUDIOELEMENT**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
870
830
|
|
|
871
831
|
Existence of the global object Audio whose string representation starts with "function HTMLAudioElement".
|
|
872
832
|
|
|
873
|
-
|
|
833
|
+
#### Remarks
|
|
874
834
|
|
|
875
835
|
Available in Android Browser 4.4. This feature is not available inside web workers.
|
|
876
836
|
|
|
877
837
|
#### Inherited from
|
|
878
838
|
|
|
879
|
-
[FeatureAll](FeatureAll.md).[HTMLAUDIOELEMENT](FeatureAll.md#htmlaudioelement)
|
|
880
|
-
|
|
881
|
-
___
|
|
882
|
-
|
|
883
|
-
### HTMLDOCUMENT
|
|
884
|
-
|
|
885
|
-
• **HTMLDOCUMENT**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
886
|
-
|
|
887
|
-
Existence of the global object document having the string representation "\[object HTMLDocument\]".
|
|
839
|
+
[`FeatureAll`](FeatureAll.md).[`HTMLAUDIOELEMENT`](FeatureAll.md#htmlaudioelement)
|
|
888
840
|
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
Available in Chrome, Edge, Firefox, Internet Explorer 11, Safari, Opera, and Android Browser. This feature is not available inside web workers.
|
|
892
|
-
|
|
893
|
-
#### Inherited from
|
|
894
|
-
|
|
895
|
-
[FeatureAll](FeatureAll.md).[HTMLDOCUMENT](FeatureAll.md#htmldocument)
|
|
896
|
-
|
|
897
|
-
___
|
|
841
|
+
***
|
|
898
842
|
|
|
899
843
|
### IE\_10
|
|
900
844
|
|
|
901
|
-
|
|
845
|
+
> **IE\_10**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
902
846
|
|
|
903
847
|
Features available in Internet Explorer 10.
|
|
904
848
|
|
|
905
849
|
#### Inherited from
|
|
906
850
|
|
|
907
|
-
[FeatureAll](FeatureAll.md).[IE_10](FeatureAll.md#ie_10)
|
|
851
|
+
[`FeatureAll`](FeatureAll.md).[`IE_10`](FeatureAll.md#ie_10)
|
|
908
852
|
|
|
909
|
-
|
|
853
|
+
***
|
|
910
854
|
|
|
911
855
|
### IE\_11
|
|
912
856
|
|
|
913
|
-
|
|
857
|
+
> **IE\_11**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
914
858
|
|
|
915
859
|
Features available in Internet Explorer 11.
|
|
916
860
|
|
|
917
861
|
#### Inherited from
|
|
918
862
|
|
|
919
|
-
[FeatureAll](FeatureAll.md).[IE_11](FeatureAll.md#ie_11)
|
|
863
|
+
[`FeatureAll`](FeatureAll.md).[`IE_11`](FeatureAll.md#ie_11)
|
|
920
864
|
|
|
921
|
-
|
|
865
|
+
***
|
|
922
866
|
|
|
923
867
|
### IE\_11\_WIN\_10
|
|
924
868
|
|
|
925
|
-
|
|
869
|
+
> **IE\_11\_WIN\_10**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
926
870
|
|
|
927
871
|
Features available in Internet Explorer 11 on Windows 10.
|
|
928
872
|
|
|
929
873
|
#### Inherited from
|
|
930
874
|
|
|
931
|
-
[FeatureAll](FeatureAll.md).[IE_11_WIN_10](FeatureAll.md#ie_11_win_10)
|
|
875
|
+
[`FeatureAll`](FeatureAll.md).[`IE_11_WIN_10`](FeatureAll.md#ie_11_win_10)
|
|
932
876
|
|
|
933
|
-
|
|
877
|
+
***
|
|
934
878
|
|
|
935
879
|
### IE\_9
|
|
936
880
|
|
|
937
|
-
|
|
881
|
+
> **IE\_9**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
938
882
|
|
|
939
883
|
Features available in Internet Explorer 9.
|
|
940
884
|
|
|
941
885
|
#### Inherited from
|
|
942
886
|
|
|
943
|
-
[FeatureAll](FeatureAll.md).[IE_9](FeatureAll.md#ie_9)
|
|
887
|
+
[`FeatureAll`](FeatureAll.md).[`IE_9`](FeatureAll.md#ie_9)
|
|
944
888
|
|
|
945
|
-
|
|
889
|
+
***
|
|
946
890
|
|
|
947
891
|
### IE\_SRC
|
|
948
892
|
|
|
949
|
-
|
|
893
|
+
> **IE\_SRC**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
950
894
|
|
|
951
895
|
A string representation of native functions typical for Internet Explorer.
|
|
952
896
|
|
|
953
897
|
Remarkable traits are the presence of a line feed character \("\\n"\) at the beginning and at the end of the string and a line feed followed by four whitespaces \("\\n "\) before the "\[native code\]" sequence.
|
|
954
898
|
|
|
955
|
-
|
|
899
|
+
#### Remarks
|
|
956
900
|
|
|
957
901
|
Available in Internet Explorer.
|
|
958
902
|
|
|
959
903
|
#### Inherited from
|
|
960
904
|
|
|
961
|
-
[FeatureAll](FeatureAll.md).[IE_SRC](FeatureAll.md#ie_src)
|
|
905
|
+
[`FeatureAll`](FeatureAll.md).[`IE_SRC`](FeatureAll.md#ie_src)
|
|
962
906
|
|
|
963
|
-
|
|
907
|
+
***
|
|
964
908
|
|
|
965
909
|
### INCR\_CHAR
|
|
966
910
|
|
|
967
|
-
|
|
911
|
+
> **INCR\_CHAR**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
968
912
|
|
|
969
913
|
The ability to use unary increment operators with string characters, like in \( ++"some string"\[0\] \): this will result in a TypeError in strict mode in ECMAScript compliant engines.
|
|
970
914
|
|
|
971
|
-
|
|
915
|
+
#### Remarks
|
|
972
916
|
|
|
973
917
|
Available in Chrome, Edge, Firefox, Internet Explorer, Safari, Opera, Android Browser, and Node.js. This feature is not available when strict mode is enforced in Chrome, Edge, Firefox, Internet Explorer 10+, Safari, Opera, and Node.js 5+.
|
|
974
918
|
|
|
975
919
|
#### Inherited from
|
|
976
920
|
|
|
977
|
-
[FeatureAll](FeatureAll.md).[INCR_CHAR](FeatureAll.md#incr_char)
|
|
921
|
+
[`FeatureAll`](FeatureAll.md).[`INCR_CHAR`](FeatureAll.md#incr_char)
|
|
978
922
|
|
|
979
|
-
|
|
923
|
+
***
|
|
980
924
|
|
|
981
925
|
### INTL
|
|
982
926
|
|
|
983
|
-
|
|
927
|
+
> **INTL**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
984
928
|
|
|
985
929
|
Existence of the global object Intl.
|
|
986
930
|
|
|
987
|
-
|
|
931
|
+
#### Remarks
|
|
988
932
|
|
|
989
|
-
Available in Chrome, Edge, Firefox, Internet Explorer 11, Safari 10+, Opera, Android Browser 4.4, and Node.js 0.12+.
|
|
933
|
+
Available in Chrome, Edge, Firefox, Internet Explorer 11, Safari 10.0+, Opera, Android Browser 4.4, and Node.js 0.12+.
|
|
990
934
|
|
|
991
935
|
#### Inherited from
|
|
992
936
|
|
|
993
|
-
[FeatureAll](FeatureAll.md).[INTL](FeatureAll.md#intl)
|
|
937
|
+
[`FeatureAll`](FeatureAll.md).[`INTL`](FeatureAll.md#intl)
|
|
938
|
+
|
|
939
|
+
***
|
|
994
940
|
|
|
995
|
-
|
|
941
|
+
### ITERATOR\_HELPER
|
|
942
|
+
|
|
943
|
+
> **ITERATOR\_HELPER**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
944
|
+
|
|
945
|
+
Availability of iterator helpers.
|
|
946
|
+
|
|
947
|
+
#### Remarks
|
|
948
|
+
|
|
949
|
+
Available in Chrome, Edge, Firefox 131+, Opera, and Node.js 22+.
|
|
950
|
+
|
|
951
|
+
#### Inherited from
|
|
952
|
+
|
|
953
|
+
[`FeatureAll`](FeatureAll.md).[`ITERATOR_HELPER`](FeatureAll.md#iterator_helper)
|
|
954
|
+
|
|
955
|
+
***
|
|
956
|
+
|
|
957
|
+
### JAPANESE\_INFINITY
|
|
958
|
+
|
|
959
|
+
> **JAPANESE\_INFINITY**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
960
|
+
|
|
961
|
+
Japanese string representation of Infinity ending with "∞".
|
|
962
|
+
|
|
963
|
+
#### Remarks
|
|
964
|
+
|
|
965
|
+
Available in Chrome, Edge, Firefox, Internet Explorer 11, Safari 10.0+, Opera, Android Browser 4.4, and Node.js 0.12+.
|
|
966
|
+
|
|
967
|
+
#### Inherited from
|
|
968
|
+
|
|
969
|
+
[`FeatureAll`](FeatureAll.md).[`JAPANESE_INFINITY`](FeatureAll.md#japanese_infinity)
|
|
970
|
+
|
|
971
|
+
***
|
|
996
972
|
|
|
997
973
|
### LOCALE\_INFINITY
|
|
998
974
|
|
|
999
|
-
|
|
975
|
+
> **LOCALE\_INFINITY**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1000
976
|
|
|
1001
977
|
Language sensitive string representation of Infinity as "∞".
|
|
1002
978
|
|
|
1003
|
-
|
|
979
|
+
#### Remarks
|
|
1004
980
|
|
|
1005
|
-
Available in Chrome, Edge, Firefox, Internet Explorer 11 on Windows 10, Safari 10+, Opera, Android Browser 4.4, and Node.js 0.12+.
|
|
981
|
+
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
982
|
|
|
1007
983
|
#### Inherited from
|
|
1008
984
|
|
|
1009
|
-
[FeatureAll](FeatureAll.md).[LOCALE_INFINITY](FeatureAll.md#locale_infinity)
|
|
985
|
+
[`FeatureAll`](FeatureAll.md).[`LOCALE_INFINITY`](FeatureAll.md#locale_infinity)
|
|
1010
986
|
|
|
1011
|
-
|
|
987
|
+
***
|
|
1012
988
|
|
|
1013
989
|
### LOCALE\_NUMERALS
|
|
1014
990
|
|
|
1015
|
-
|
|
991
|
+
> **LOCALE\_NUMERALS**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1016
992
|
|
|
1017
993
|
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
994
|
|
|
1019
|
-
|
|
995
|
+
#### Remarks
|
|
1020
996
|
|
|
1021
|
-
Available in Chrome, Edge, Firefox, Internet Explorer 11, Safari 10+, Opera, Android Browser 4.4, and Node.js 13+.
|
|
997
|
+
Available in Chrome, Edge, Firefox, Internet Explorer 11, Safari 10.0+, Opera, Android Browser 4.4, and Node.js 13+.
|
|
1022
998
|
|
|
1023
999
|
#### Inherited from
|
|
1024
1000
|
|
|
1025
|
-
[FeatureAll](FeatureAll.md).[LOCALE_NUMERALS](FeatureAll.md#locale_numerals)
|
|
1001
|
+
[`FeatureAll`](FeatureAll.md).[`LOCALE_NUMERALS`](FeatureAll.md#locale_numerals)
|
|
1026
1002
|
|
|
1027
|
-
|
|
1003
|
+
***
|
|
1028
1004
|
|
|
1029
1005
|
### LOCALE\_NUMERALS\_EXT
|
|
1030
1006
|
|
|
1031
|
-
|
|
1007
|
+
> **LOCALE\_NUMERALS\_EXT**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1032
1008
|
|
|
1033
1009
|
Extended localized number formatting.
|
|
1034
1010
|
|
|
1035
1011
|
This includes all features of LOCALE_NUMERALS plus the output of the first three letters in the second word of the Arabic string representation of NaN \("رقم"\), Bengali digits, the letters in the Russian string representation of NaN \("не число"\) and the letters in the Persian string representation of NaN \("ناعدد"\).
|
|
1036
1012
|
|
|
1037
|
-
|
|
1013
|
+
#### Remarks
|
|
1038
1014
|
|
|
1039
|
-
Available in Chrome, Edge, Firefox, Internet Explorer 11 on Windows 10, Safari 10+, Opera, Android Browser 4.4, and Node.js 13+.
|
|
1015
|
+
Available in Chrome, Edge, Firefox, Internet Explorer 11 on Windows 10, Safari 10.0+, Opera, Android Browser 4.4, and Node.js 13+.
|
|
1040
1016
|
|
|
1041
1017
|
#### Inherited from
|
|
1042
1018
|
|
|
1043
|
-
[FeatureAll](FeatureAll.md).[LOCALE_NUMERALS_EXT](FeatureAll.md#locale_numerals_ext)
|
|
1019
|
+
[`FeatureAll`](FeatureAll.md).[`LOCALE_NUMERALS_EXT`](FeatureAll.md#locale_numerals_ext)
|
|
1044
1020
|
|
|
1045
|
-
|
|
1021
|
+
***
|
|
1046
1022
|
|
|
1047
1023
|
### LOCATION
|
|
1048
1024
|
|
|
1049
|
-
|
|
1025
|
+
> **LOCATION**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1050
1026
|
|
|
1051
1027
|
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\]".
|
|
1052
1028
|
|
|
1053
|
-
|
|
1029
|
+
#### Remarks
|
|
1054
1030
|
|
|
1055
1031
|
Available in Chrome, Edge, Firefox, Safari, Opera, and Android Browser.
|
|
1056
1032
|
|
|
1057
1033
|
#### Inherited from
|
|
1058
1034
|
|
|
1059
|
-
[FeatureAll](FeatureAll.md).[LOCATION](FeatureAll.md#location)
|
|
1035
|
+
[`FeatureAll`](FeatureAll.md).[`LOCATION`](FeatureAll.md#location)
|
|
1036
|
+
|
|
1037
|
+
***
|
|
1038
|
+
|
|
1039
|
+
### MOZILLA
|
|
1040
|
+
|
|
1041
|
+
> **MOZILLA**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1042
|
+
|
|
1043
|
+
Existence of user agent string navigator.userAgent that starts with "Mozilla".
|
|
1044
|
+
|
|
1045
|
+
#### Remarks
|
|
1060
1046
|
|
|
1061
|
-
|
|
1047
|
+
Available in Chrome, Edge, Firefox, Internet Explorer, Safari, Opera, and Android Browser.
|
|
1048
|
+
|
|
1049
|
+
#### Inherited from
|
|
1050
|
+
|
|
1051
|
+
[`FeatureAll`](FeatureAll.md).[`MOZILLA`](FeatureAll.md#mozilla)
|
|
1052
|
+
|
|
1053
|
+
***
|
|
1062
1054
|
|
|
1063
1055
|
### NAME
|
|
1064
1056
|
|
|
1065
|
-
|
|
1057
|
+
> **NAME**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1066
1058
|
|
|
1067
1059
|
Existence of the name property for functions.
|
|
1068
1060
|
|
|
1069
|
-
|
|
1061
|
+
#### Remarks
|
|
1070
1062
|
|
|
1071
1063
|
Available in Chrome, Edge, Firefox, Safari, Opera, Android Browser, and Node.js.
|
|
1072
1064
|
|
|
1073
1065
|
#### Inherited from
|
|
1074
1066
|
|
|
1075
|
-
[FeatureAll](FeatureAll.md).[NAME](FeatureAll.md#name)
|
|
1067
|
+
[`FeatureAll`](FeatureAll.md).[`NAME`](FeatureAll.md#name)
|
|
1076
1068
|
|
|
1077
|
-
|
|
1069
|
+
***
|
|
1078
1070
|
|
|
1079
|
-
###
|
|
1071
|
+
### NO\_FF\_SRC
|
|
1080
1072
|
|
|
1081
|
-
|
|
1073
|
+
> **NO\_FF\_SRC**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1082
1074
|
|
|
1083
|
-
|
|
1075
|
+
A string representation of native functions typical for V8 or for Internet Explorer but not for Firefox and Safari.
|
|
1084
1076
|
|
|
1085
|
-
|
|
1077
|
+
#### Remarks
|
|
1086
1078
|
|
|
1087
|
-
Available in
|
|
1079
|
+
Available in Chrome, Edge, Internet Explorer, Opera, Android Browser, and Node.js.
|
|
1088
1080
|
|
|
1089
1081
|
#### Inherited from
|
|
1090
1082
|
|
|
1091
|
-
[FeatureAll](FeatureAll.md).[
|
|
1083
|
+
[`FeatureAll`](FeatureAll.md).[`NO_FF_SRC`](FeatureAll.md#no_ff_src)
|
|
1084
|
+
|
|
1085
|
+
***
|
|
1086
|
+
|
|
1087
|
+
### NO\_IE\_SRC
|
|
1088
|
+
|
|
1089
|
+
> **NO\_IE\_SRC**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1090
|
+
|
|
1091
|
+
A string representation of native functions typical for most engines with the notable exception of Internet Explorer.
|
|
1092
|
+
|
|
1093
|
+
A remarkable trait of this feature is the lack of line feed characters at the beginning and at the end of the string.
|
|
1092
1094
|
|
|
1093
|
-
|
|
1095
|
+
#### Remarks
|
|
1096
|
+
|
|
1097
|
+
Available in Chrome, Edge, Firefox, Safari, Opera, Android Browser, and Node.js.
|
|
1098
|
+
|
|
1099
|
+
#### Inherited from
|
|
1100
|
+
|
|
1101
|
+
[`FeatureAll`](FeatureAll.md).[`NO_IE_SRC`](FeatureAll.md#no_ie_src)
|
|
1102
|
+
|
|
1103
|
+
***
|
|
1104
|
+
|
|
1105
|
+
### NO\_OLD\_SAFARI\_ARRAY\_ITERATOR
|
|
1106
|
+
|
|
1107
|
+
> **NO\_OLD\_SAFARI\_ARRAY\_ITERATOR**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1108
|
+
|
|
1109
|
+
The property that the string representation of Array.prototype.entries\(\) evaluates to "\[object Array Iterator\]".
|
|
1110
|
+
|
|
1111
|
+
#### Remarks
|
|
1112
|
+
|
|
1113
|
+
Available in Chrome, Edge, Firefox, Safari 9+, Opera, and Node.js 0.12+.
|
|
1114
|
+
|
|
1115
|
+
#### Inherited from
|
|
1116
|
+
|
|
1117
|
+
[`FeatureAll`](FeatureAll.md).[`NO_OLD_SAFARI_ARRAY_ITERATOR`](FeatureAll.md#no_old_safari_array_iterator)
|
|
1118
|
+
|
|
1119
|
+
***
|
|
1120
|
+
|
|
1121
|
+
### NO\_V8\_SRC
|
|
1122
|
+
|
|
1123
|
+
> **NO\_V8\_SRC**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1124
|
+
|
|
1125
|
+
A string representation of native functions typical for Firefox, Internet Explorer and Safari.
|
|
1126
|
+
|
|
1127
|
+
A most remarkable trait of this feature is the presence of a line feed followed by four whitespaces \("\\n "\) before the "\[native code\]" sequence.
|
|
1128
|
+
|
|
1129
|
+
#### Remarks
|
|
1130
|
+
|
|
1131
|
+
Available in Firefox, Internet Explorer, and Safari.
|
|
1132
|
+
|
|
1133
|
+
#### Inherited from
|
|
1134
|
+
|
|
1135
|
+
[`FeatureAll`](FeatureAll.md).[`NO_V8_SRC`](FeatureAll.md#no_v8_src)
|
|
1136
|
+
|
|
1137
|
+
***
|
|
1094
1138
|
|
|
1095
1139
|
### NODE\_0\_10
|
|
1096
1140
|
|
|
1097
|
-
|
|
1141
|
+
> **NODE\_0\_10**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1098
1142
|
|
|
1099
1143
|
Features available in Node.js 0.10.
|
|
1100
1144
|
|
|
1101
1145
|
#### Inherited from
|
|
1102
1146
|
|
|
1103
|
-
[FeatureAll](FeatureAll.md).[NODE_0_10](FeatureAll.md#node_0_10)
|
|
1147
|
+
[`FeatureAll`](FeatureAll.md).[`NODE_0_10`](FeatureAll.md#node_0_10)
|
|
1104
1148
|
|
|
1105
|
-
|
|
1149
|
+
***
|
|
1106
1150
|
|
|
1107
1151
|
### NODE\_0\_12
|
|
1108
1152
|
|
|
1109
|
-
|
|
1153
|
+
> **NODE\_0\_12**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1110
1154
|
|
|
1111
1155
|
Features available in Node.js 0.12.
|
|
1112
1156
|
|
|
1113
1157
|
#### Inherited from
|
|
1114
1158
|
|
|
1115
|
-
[FeatureAll](FeatureAll.md).[NODE_0_12](FeatureAll.md#node_0_12)
|
|
1159
|
+
[`FeatureAll`](FeatureAll.md).[`NODE_0_12`](FeatureAll.md#node_0_12)
|
|
1116
1160
|
|
|
1117
|
-
|
|
1161
|
+
***
|
|
1118
1162
|
|
|
1119
1163
|
### NODE\_10
|
|
1120
1164
|
|
|
1121
|
-
|
|
1165
|
+
> **NODE\_10**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1122
1166
|
|
|
1123
1167
|
Features available in Node.js 10.
|
|
1124
1168
|
|
|
1125
1169
|
#### Inherited from
|
|
1126
1170
|
|
|
1127
|
-
[FeatureAll](FeatureAll.md).[NODE_10](FeatureAll.md#node_10)
|
|
1171
|
+
[`FeatureAll`](FeatureAll.md).[`NODE_10`](FeatureAll.md#node_10)
|
|
1128
1172
|
|
|
1129
|
-
|
|
1173
|
+
***
|
|
1130
1174
|
|
|
1131
1175
|
### NODE\_11
|
|
1132
1176
|
|
|
1133
|
-
|
|
1177
|
+
> **NODE\_11**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1134
1178
|
|
|
1135
1179
|
Features available in Node.js 11.
|
|
1136
1180
|
|
|
1137
1181
|
#### Inherited from
|
|
1138
1182
|
|
|
1139
|
-
[FeatureAll](FeatureAll.md).[NODE_11](FeatureAll.md#node_11)
|
|
1183
|
+
[`FeatureAll`](FeatureAll.md).[`NODE_11`](FeatureAll.md#node_11)
|
|
1140
1184
|
|
|
1141
|
-
|
|
1185
|
+
***
|
|
1142
1186
|
|
|
1143
1187
|
### NODE\_12
|
|
1144
1188
|
|
|
1145
|
-
|
|
1189
|
+
> **NODE\_12**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1146
1190
|
|
|
1147
1191
|
Features available in Node.js 12.
|
|
1148
1192
|
|
|
1149
1193
|
#### Inherited from
|
|
1150
1194
|
|
|
1151
|
-
[FeatureAll](FeatureAll.md).[NODE_12](FeatureAll.md#node_12)
|
|
1195
|
+
[`FeatureAll`](FeatureAll.md).[`NODE_12`](FeatureAll.md#node_12)
|
|
1152
1196
|
|
|
1153
|
-
|
|
1197
|
+
***
|
|
1154
1198
|
|
|
1155
1199
|
### NODE\_13
|
|
1156
1200
|
|
|
1157
|
-
|
|
1201
|
+
> **NODE\_13**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1158
1202
|
|
|
1159
1203
|
Features available in Node.js 13 and Node.js 14.
|
|
1160
1204
|
|
|
1161
1205
|
#### Inherited from
|
|
1162
1206
|
|
|
1163
|
-
[FeatureAll](FeatureAll.md).[NODE_13](FeatureAll.md#node_13)
|
|
1207
|
+
[`FeatureAll`](FeatureAll.md).[`NODE_13`](FeatureAll.md#node_13)
|
|
1164
1208
|
|
|
1165
|
-
|
|
1209
|
+
***
|
|
1166
1210
|
|
|
1167
1211
|
### NODE\_15
|
|
1168
1212
|
|
|
1169
|
-
|
|
1213
|
+
> **NODE\_15**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1170
1214
|
|
|
1171
1215
|
Features available in Node.js 15.
|
|
1172
1216
|
|
|
1173
1217
|
#### Inherited from
|
|
1174
1218
|
|
|
1175
|
-
[FeatureAll](FeatureAll.md).[NODE_15](FeatureAll.md#node_15)
|
|
1219
|
+
[`FeatureAll`](FeatureAll.md).[`NODE_15`](FeatureAll.md#node_15)
|
|
1176
1220
|
|
|
1177
|
-
|
|
1221
|
+
***
|
|
1178
1222
|
|
|
1179
1223
|
### NODE\_16\_0
|
|
1180
1224
|
|
|
1181
|
-
|
|
1225
|
+
> **NODE\_16\_0**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1182
1226
|
|
|
1183
1227
|
Features available in Node.js 16.0 to 16.5.
|
|
1184
1228
|
|
|
1185
1229
|
#### Inherited from
|
|
1186
1230
|
|
|
1187
|
-
[FeatureAll](FeatureAll.md).[NODE_16_0](FeatureAll.md#node_16_0)
|
|
1231
|
+
[`FeatureAll`](FeatureAll.md).[`NODE_16_0`](FeatureAll.md#node_16_0)
|
|
1188
1232
|
|
|
1189
|
-
|
|
1233
|
+
***
|
|
1190
1234
|
|
|
1191
1235
|
### NODE\_16\_6
|
|
1192
1236
|
|
|
1193
|
-
|
|
1237
|
+
> **NODE\_16\_6**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1194
1238
|
|
|
1195
1239
|
Features available in Node.js 16.6 to 21.
|
|
1196
1240
|
|
|
1197
1241
|
#### Inherited from
|
|
1198
1242
|
|
|
1199
|
-
[FeatureAll](FeatureAll.md).[NODE_16_6](FeatureAll.md#node_16_6)
|
|
1243
|
+
[`FeatureAll`](FeatureAll.md).[`NODE_16_6`](FeatureAll.md#node_16_6)
|
|
1200
1244
|
|
|
1201
|
-
|
|
1245
|
+
***
|
|
1202
1246
|
|
|
1203
1247
|
### NODE\_22
|
|
1204
1248
|
|
|
1205
|
-
|
|
1249
|
+
> **NODE\_22**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1206
1250
|
|
|
1207
1251
|
Features available in Node.js 22 or later.
|
|
1208
1252
|
|
|
1209
1253
|
#### Inherited from
|
|
1210
1254
|
|
|
1211
|
-
[FeatureAll](FeatureAll.md).[NODE_22](FeatureAll.md#node_22)
|
|
1255
|
+
[`FeatureAll`](FeatureAll.md).[`NODE_22`](FeatureAll.md#node_22)
|
|
1212
1256
|
|
|
1213
|
-
|
|
1257
|
+
***
|
|
1214
1258
|
|
|
1215
1259
|
### NODE\_4
|
|
1216
1260
|
|
|
1217
|
-
|
|
1261
|
+
> **NODE\_4**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1218
1262
|
|
|
1219
1263
|
Features available in Node.js 4.
|
|
1220
1264
|
|
|
1221
1265
|
#### Inherited from
|
|
1222
1266
|
|
|
1223
|
-
[FeatureAll](FeatureAll.md).[NODE_4](FeatureAll.md#node_4)
|
|
1267
|
+
[`FeatureAll`](FeatureAll.md).[`NODE_4`](FeatureAll.md#node_4)
|
|
1224
1268
|
|
|
1225
|
-
|
|
1269
|
+
***
|
|
1226
1270
|
|
|
1227
1271
|
### NODE\_5
|
|
1228
1272
|
|
|
1229
|
-
|
|
1273
|
+
> **NODE\_5**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1230
1274
|
|
|
1231
|
-
Features available in Node.js 5 to
|
|
1275
|
+
Features available in Node.js 5 to 7.5.
|
|
1232
1276
|
|
|
1233
1277
|
#### Inherited from
|
|
1234
1278
|
|
|
1235
|
-
[FeatureAll](FeatureAll.md).[NODE_5](FeatureAll.md#node_5)
|
|
1279
|
+
[`FeatureAll`](FeatureAll.md).[`NODE_5`](FeatureAll.md#node_5)
|
|
1236
1280
|
|
|
1237
|
-
|
|
1281
|
+
***
|
|
1238
1282
|
|
|
1239
|
-
###
|
|
1283
|
+
### NODE\_7\_6
|
|
1240
1284
|
|
|
1241
|
-
|
|
1285
|
+
> **NODE\_7\_6**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1242
1286
|
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
**`Remarks`**
|
|
1246
|
-
|
|
1247
|
-
Available in Chrome, Edge, Internet Explorer, Opera, Android Browser, and Node.js.
|
|
1248
|
-
|
|
1249
|
-
#### Inherited from
|
|
1250
|
-
|
|
1251
|
-
[FeatureAll](FeatureAll.md).[NO_FF_SRC](FeatureAll.md#no_ff_src)
|
|
1252
|
-
|
|
1253
|
-
___
|
|
1254
|
-
|
|
1255
|
-
### NO\_IE\_SRC
|
|
1256
|
-
|
|
1257
|
-
• **NO\_IE\_SRC**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1258
|
-
|
|
1259
|
-
A string representation of native functions typical for most engines with the notable exception of Internet Explorer.
|
|
1260
|
-
|
|
1261
|
-
A remarkable trait of this feature is the lack of line feed characters at the beginning and at the end of the string.
|
|
1262
|
-
|
|
1263
|
-
**`Remarks`**
|
|
1264
|
-
|
|
1265
|
-
Available in Chrome, Edge, Firefox, Safari, Opera, Android Browser, and Node.js.
|
|
1287
|
+
Features available in Node.js 7.6 to 9.
|
|
1266
1288
|
|
|
1267
1289
|
#### Inherited from
|
|
1268
1290
|
|
|
1269
|
-
[FeatureAll](FeatureAll.md).[
|
|
1291
|
+
[`FeatureAll`](FeatureAll.md).[`NODE_7_6`](FeatureAll.md#node_7_6)
|
|
1270
1292
|
|
|
1271
|
-
|
|
1293
|
+
***
|
|
1272
1294
|
|
|
1273
|
-
###
|
|
1295
|
+
### NODE\_NAME
|
|
1274
1296
|
|
|
1275
|
-
|
|
1297
|
+
> **NODE\_NAME**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1276
1298
|
|
|
1277
|
-
|
|
1299
|
+
Existence of the string document.nodeName that starts with a number sign \("#"\).
|
|
1278
1300
|
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
Available in Chrome, Edge, Firefox, Safari 9+, Opera, and Node.js 0.12+.
|
|
1301
|
+
An alias for `ANY_DOCUMENT`.
|
|
1282
1302
|
|
|
1283
1303
|
#### Inherited from
|
|
1284
1304
|
|
|
1285
|
-
[FeatureAll](FeatureAll.md).[
|
|
1305
|
+
[`FeatureAll`](FeatureAll.md).[`NODE_NAME`](FeatureAll.md#node_name)
|
|
1286
1306
|
|
|
1287
|
-
|
|
1307
|
+
***
|
|
1288
1308
|
|
|
1289
|
-
###
|
|
1309
|
+
### NODECONSTRUCTOR
|
|
1290
1310
|
|
|
1291
|
-
|
|
1311
|
+
> **NODECONSTRUCTOR**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1292
1312
|
|
|
1293
|
-
|
|
1313
|
+
Existence of the global object Node having the string representation "\[object NodeConstructor\]".
|
|
1294
1314
|
|
|
1295
|
-
|
|
1315
|
+
#### Remarks
|
|
1296
1316
|
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
Available in Firefox, Internet Explorer, and Safari.
|
|
1317
|
+
Available in Safari before 10.0. This feature is not available inside web workers.
|
|
1300
1318
|
|
|
1301
1319
|
#### Inherited from
|
|
1302
1320
|
|
|
1303
|
-
[FeatureAll](FeatureAll.md).[
|
|
1321
|
+
[`FeatureAll`](FeatureAll.md).[`NODECONSTRUCTOR`](FeatureAll.md#nodeconstructor)
|
|
1304
1322
|
|
|
1305
|
-
|
|
1323
|
+
***
|
|
1306
1324
|
|
|
1307
1325
|
### OBJECT\_ARRAY\_ENTRIES\_CTOR
|
|
1308
1326
|
|
|
1309
|
-
|
|
1327
|
+
> **OBJECT\_ARRAY\_ENTRIES\_CTOR**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1310
1328
|
|
|
1311
1329
|
The property that the Array.prototype.entries\(\).constructor is the Object constructor.
|
|
1312
1330
|
|
|
1313
|
-
|
|
1331
|
+
#### Remarks
|
|
1314
1332
|
|
|
1315
|
-
Available in Firefox, Safari 9+, and Node.js 0.12+ before 22.
|
|
1333
|
+
Available in Firefox before 131, Safari 9+, and Node.js 0.12+ before 22.
|
|
1316
1334
|
|
|
1317
1335
|
#### Inherited from
|
|
1318
1336
|
|
|
1319
|
-
[FeatureAll](FeatureAll.md).[OBJECT_ARRAY_ENTRIES_CTOR](FeatureAll.md#object_array_entries_ctor)
|
|
1337
|
+
[`FeatureAll`](FeatureAll.md).[`OBJECT_ARRAY_ENTRIES_CTOR`](FeatureAll.md#object_array_entries_ctor)
|
|
1320
1338
|
|
|
1321
|
-
|
|
1339
|
+
***
|
|
1322
1340
|
|
|
1323
1341
|
### OBJECT\_L\_LOCATION\_CTOR
|
|
1324
1342
|
|
|
1325
|
-
|
|
1343
|
+
> **OBJECT\_L\_LOCATION\_CTOR**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1326
1344
|
|
|
1327
1345
|
Existence of the global function location.constructor whose string representation starts with "\[object L".
|
|
1328
1346
|
|
|
1329
|
-
|
|
1347
|
+
#### Remarks
|
|
1330
1348
|
|
|
1331
|
-
Available in Internet Explorer and Safari before 10. This feature is not available inside web workers.
|
|
1349
|
+
Available in Internet Explorer and Safari before 10.0. This feature is not available inside web workers.
|
|
1332
1350
|
|
|
1333
1351
|
#### Inherited from
|
|
1334
1352
|
|
|
1335
|
-
[FeatureAll](FeatureAll.md).[OBJECT_L_LOCATION_CTOR](FeatureAll.md#object_l_location_ctor)
|
|
1353
|
+
[`FeatureAll`](FeatureAll.md).[`OBJECT_L_LOCATION_CTOR`](FeatureAll.md#object_l_location_ctor)
|
|
1336
1354
|
|
|
1337
|
-
|
|
1355
|
+
***
|
|
1338
1356
|
|
|
1339
1357
|
### OBJECT\_UNDEFINED
|
|
1340
1358
|
|
|
1341
|
-
|
|
1359
|
+
> **OBJECT\_UNDEFINED**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1342
1360
|
|
|
1343
1361
|
Having the function Object.prototype.toString return the string "\[object Undefined\]" when invoked without a binding.
|
|
1344
1362
|
|
|
1345
|
-
|
|
1363
|
+
#### Remarks
|
|
1346
1364
|
|
|
1347
1365
|
Available in Chrome, Edge, Firefox, Internet Explorer 10+, Safari, Opera, Android Browser 4.1+, and Node.js.
|
|
1348
1366
|
|
|
1349
1367
|
#### Inherited from
|
|
1350
1368
|
|
|
1351
|
-
[FeatureAll](FeatureAll.md).[OBJECT_UNDEFINED](FeatureAll.md#object_undefined)
|
|
1369
|
+
[`FeatureAll`](FeatureAll.md).[`OBJECT_UNDEFINED`](FeatureAll.md#object_undefined)
|
|
1352
1370
|
|
|
1353
|
-
|
|
1371
|
+
***
|
|
1354
1372
|
|
|
1355
|
-
### OBJECT\_W\
|
|
1373
|
+
### OBJECT\_W\_SELF
|
|
1356
1374
|
|
|
1357
|
-
|
|
1375
|
+
> **OBJECT\_W\_SELF**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1358
1376
|
|
|
1359
|
-
The property that the string representation of the global object
|
|
1377
|
+
The property that the string representation of the global object self starts with "\[object W".
|
|
1360
1378
|
|
|
1361
|
-
|
|
1379
|
+
#### Remarks
|
|
1362
1380
|
|
|
1363
|
-
Available in Internet Explorer and
|
|
1381
|
+
Available in Chrome, Edge, Firefox, Internet Explorer, Safari, Opera, and Android Browser 4.4. This feature is not available inside web workers in Chrome, Edge, Firefox, Safari, Opera, and Android Browser 4.4.
|
|
1364
1382
|
|
|
1365
1383
|
#### Inherited from
|
|
1366
1384
|
|
|
1367
|
-
[FeatureAll](FeatureAll.md).[
|
|
1385
|
+
[`FeatureAll`](FeatureAll.md).[`OBJECT_W_SELF`](FeatureAll.md#object_w_self)
|
|
1368
1386
|
|
|
1369
|
-
|
|
1387
|
+
***
|
|
1370
1388
|
|
|
1371
1389
|
### OLD\_SAFARI\_LOCATION\_CTOR
|
|
1372
1390
|
|
|
1373
|
-
|
|
1391
|
+
> **OLD\_SAFARI\_LOCATION\_CTOR**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1374
1392
|
|
|
1375
1393
|
Existence of the global object location.constructor whose string representation starts with "\[object " and ends with "LocationConstructor\]".
|
|
1376
1394
|
|
|
1377
|
-
|
|
1395
|
+
#### Remarks
|
|
1378
1396
|
|
|
1379
|
-
Available in Safari before 10.
|
|
1397
|
+
Available in Safari before 10.0.
|
|
1380
1398
|
|
|
1381
1399
|
#### Inherited from
|
|
1382
1400
|
|
|
1383
|
-
[FeatureAll](FeatureAll.md).[OLD_SAFARI_LOCATION_CTOR](FeatureAll.md#old_safari_location_ctor)
|
|
1401
|
+
[`FeatureAll`](FeatureAll.md).[`OLD_SAFARI_LOCATION_CTOR`](FeatureAll.md#old_safari_location_ctor)
|
|
1384
1402
|
|
|
1385
|
-
|
|
1403
|
+
***
|
|
1386
1404
|
|
|
1387
1405
|
### PLAIN\_INTL
|
|
1388
1406
|
|
|
1389
|
-
|
|
1407
|
+
> **PLAIN\_INTL**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1390
1408
|
|
|
1391
1409
|
Existence of the global object Intl having the string representation "\[object Object\]".
|
|
1392
1410
|
|
|
1393
|
-
|
|
1411
|
+
#### Remarks
|
|
1394
1412
|
|
|
1395
|
-
Available in Internet Explorer 11, Safari 10+ before 14.0.1, Android Browser 4.4, and Node.js 0.12+ before 15.
|
|
1413
|
+
Available in Internet Explorer 11, Safari 10.0+ before 14.0.1, Android Browser 4.4, and Node.js 0.12+ before 15.
|
|
1396
1414
|
|
|
1397
1415
|
#### Inherited from
|
|
1398
1416
|
|
|
1399
|
-
[FeatureAll](FeatureAll.md).[PLAIN_INTL](FeatureAll.md#plain_intl)
|
|
1417
|
+
[`FeatureAll`](FeatureAll.md).[`PLAIN_INTL`](FeatureAll.md#plain_intl)
|
|
1400
1418
|
|
|
1401
|
-
|
|
1419
|
+
***
|
|
1402
1420
|
|
|
1403
1421
|
### REGEXP\_STRING\_ITERATOR
|
|
1404
1422
|
|
|
1405
|
-
|
|
1423
|
+
> **REGEXP\_STRING\_ITERATOR**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1406
1424
|
|
|
1407
1425
|
The property that the string representation of String.prototype.matchAll\(\) evaluates to "\[object RegExp String Iterator\]".
|
|
1408
1426
|
|
|
1409
|
-
|
|
1427
|
+
#### Remarks
|
|
1410
1428
|
|
|
1411
1429
|
Available in Chrome, Edge, Firefox, Safari 13+, Opera, and Node.js 12+.
|
|
1412
1430
|
|
|
1413
1431
|
#### Inherited from
|
|
1414
1432
|
|
|
1415
|
-
[FeatureAll](FeatureAll.md).[REGEXP_STRING_ITERATOR](FeatureAll.md#regexp_string_iterator)
|
|
1433
|
+
[`FeatureAll`](FeatureAll.md).[`REGEXP_STRING_ITERATOR`](FeatureAll.md#regexp_string_iterator)
|
|
1416
1434
|
|
|
1417
|
-
|
|
1435
|
+
***
|
|
1418
1436
|
|
|
1419
1437
|
### SAFARI
|
|
1420
1438
|
|
|
1421
|
-
|
|
1439
|
+
> **SAFARI**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1422
1440
|
|
|
1423
1441
|
Features available in the current stable version of Safari.
|
|
1424
1442
|
|
|
1425
|
-
An alias for `
|
|
1443
|
+
An alias for `SAFARI_18`.
|
|
1444
|
+
|
|
1445
|
+
#### Inherited from
|
|
1446
|
+
|
|
1447
|
+
[`FeatureAll`](FeatureAll.md).[`SAFARI`](FeatureAll.md#safari)
|
|
1448
|
+
|
|
1449
|
+
***
|
|
1450
|
+
|
|
1451
|
+
### SAFARI\_10\_0
|
|
1452
|
+
|
|
1453
|
+
> **SAFARI\_10\_0**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1454
|
+
|
|
1455
|
+
Features available in Safari 10.0.
|
|
1426
1456
|
|
|
1427
1457
|
#### Inherited from
|
|
1428
1458
|
|
|
1429
|
-
[FeatureAll](FeatureAll.md).[
|
|
1459
|
+
[`FeatureAll`](FeatureAll.md).[`SAFARI_10_0`](FeatureAll.md#safari_10_0)
|
|
1430
1460
|
|
|
1431
|
-
|
|
1461
|
+
***
|
|
1432
1462
|
|
|
1433
|
-
### SAFARI\_10
|
|
1463
|
+
### SAFARI\_10\_1
|
|
1434
1464
|
|
|
1435
|
-
|
|
1465
|
+
> **SAFARI\_10\_1**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1436
1466
|
|
|
1437
|
-
Features available in Safari 10 and Safari 11.
|
|
1467
|
+
Features available in Safari 10.1 and Safari 11.
|
|
1438
1468
|
|
|
1439
1469
|
#### Inherited from
|
|
1440
1470
|
|
|
1441
|
-
[FeatureAll](FeatureAll.md).[
|
|
1471
|
+
[`FeatureAll`](FeatureAll.md).[`SAFARI_10_1`](FeatureAll.md#safari_10_1)
|
|
1442
1472
|
|
|
1443
|
-
|
|
1473
|
+
***
|
|
1444
1474
|
|
|
1445
1475
|
### SAFARI\_12
|
|
1446
1476
|
|
|
1447
|
-
|
|
1477
|
+
> **SAFARI\_12**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1448
1478
|
|
|
1449
1479
|
Features available in Safari 12.
|
|
1450
1480
|
|
|
1451
1481
|
#### Inherited from
|
|
1452
1482
|
|
|
1453
|
-
[FeatureAll](FeatureAll.md).[SAFARI_12](FeatureAll.md#safari_12)
|
|
1483
|
+
[`FeatureAll`](FeatureAll.md).[`SAFARI_12`](FeatureAll.md#safari_12)
|
|
1454
1484
|
|
|
1455
|
-
|
|
1485
|
+
***
|
|
1456
1486
|
|
|
1457
1487
|
### SAFARI\_13
|
|
1458
1488
|
|
|
1459
|
-
|
|
1489
|
+
> **SAFARI\_13**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1460
1490
|
|
|
1461
1491
|
Features available in Safari 13 and Safari 14.0.0.
|
|
1462
1492
|
|
|
1463
1493
|
#### Inherited from
|
|
1464
1494
|
|
|
1465
|
-
[FeatureAll](FeatureAll.md).[SAFARI_13](FeatureAll.md#safari_13)
|
|
1495
|
+
[`FeatureAll`](FeatureAll.md).[`SAFARI_13`](FeatureAll.md#safari_13)
|
|
1466
1496
|
|
|
1467
|
-
|
|
1497
|
+
***
|
|
1468
1498
|
|
|
1469
1499
|
### SAFARI\_14\_0\_1
|
|
1470
1500
|
|
|
1471
|
-
|
|
1501
|
+
> **SAFARI\_14\_0\_1**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1472
1502
|
|
|
1473
1503
|
Features available in Safari 14.0.1 to 14.0.3.
|
|
1474
1504
|
|
|
1475
1505
|
#### Inherited from
|
|
1476
1506
|
|
|
1477
|
-
[FeatureAll](FeatureAll.md).[SAFARI_14_0_1](FeatureAll.md#safari_14_0_1)
|
|
1507
|
+
[`FeatureAll`](FeatureAll.md).[`SAFARI_14_0_1`](FeatureAll.md#safari_14_0_1)
|
|
1478
1508
|
|
|
1479
|
-
|
|
1509
|
+
***
|
|
1480
1510
|
|
|
1481
1511
|
### SAFARI\_14\_1
|
|
1482
1512
|
|
|
1483
|
-
|
|
1513
|
+
> **SAFARI\_14\_1**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1484
1514
|
|
|
1485
1515
|
Features available in Safari 14.1 to 15.3.
|
|
1486
1516
|
|
|
1487
1517
|
#### Inherited from
|
|
1488
1518
|
|
|
1489
|
-
[FeatureAll](FeatureAll.md).[SAFARI_14_1](FeatureAll.md#safari_14_1)
|
|
1519
|
+
[`FeatureAll`](FeatureAll.md).[`SAFARI_14_1`](FeatureAll.md#safari_14_1)
|
|
1490
1520
|
|
|
1491
|
-
|
|
1521
|
+
***
|
|
1492
1522
|
|
|
1493
1523
|
### SAFARI\_15\_4
|
|
1494
1524
|
|
|
1495
|
-
|
|
1525
|
+
> **SAFARI\_15\_4**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1496
1526
|
|
|
1497
1527
|
Features available in Safari 15.4 to 17.3.
|
|
1498
1528
|
|
|
1499
1529
|
#### Inherited from
|
|
1500
1530
|
|
|
1501
|
-
[FeatureAll](FeatureAll.md).[SAFARI_15_4](FeatureAll.md#safari_15_4)
|
|
1531
|
+
[`FeatureAll`](FeatureAll.md).[`SAFARI_15_4`](FeatureAll.md#safari_15_4)
|
|
1502
1532
|
|
|
1503
|
-
|
|
1533
|
+
***
|
|
1504
1534
|
|
|
1505
1535
|
### SAFARI\_17\_4
|
|
1506
1536
|
|
|
1507
|
-
|
|
1537
|
+
> **SAFARI\_17\_4**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1508
1538
|
|
|
1509
|
-
Features available in Safari 17.4
|
|
1539
|
+
Features available in Safari 17.4 to 17.6.
|
|
1510
1540
|
|
|
1511
1541
|
#### Inherited from
|
|
1512
1542
|
|
|
1513
|
-
[FeatureAll](FeatureAll.md).[SAFARI_17_4](FeatureAll.md#safari_17_4)
|
|
1543
|
+
[`FeatureAll`](FeatureAll.md).[`SAFARI_17_4`](FeatureAll.md#safari_17_4)
|
|
1544
|
+
|
|
1545
|
+
***
|
|
1546
|
+
|
|
1547
|
+
### SAFARI\_18
|
|
1548
|
+
|
|
1549
|
+
> **SAFARI\_18**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1514
1550
|
|
|
1515
|
-
|
|
1551
|
+
Features available in Safari 18 or later.
|
|
1552
|
+
|
|
1553
|
+
#### Inherited from
|
|
1554
|
+
|
|
1555
|
+
[`FeatureAll`](FeatureAll.md).[`SAFARI_18`](FeatureAll.md#safari_18)
|
|
1556
|
+
|
|
1557
|
+
***
|
|
1516
1558
|
|
|
1517
1559
|
### SAFARI\_7\_0
|
|
1518
1560
|
|
|
1519
|
-
|
|
1561
|
+
> **SAFARI\_7\_0**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1520
1562
|
|
|
1521
1563
|
Features available in Safari 7.0.
|
|
1522
1564
|
|
|
1523
1565
|
#### Inherited from
|
|
1524
1566
|
|
|
1525
|
-
[FeatureAll](FeatureAll.md).[SAFARI_7_0](FeatureAll.md#safari_7_0)
|
|
1567
|
+
[`FeatureAll`](FeatureAll.md).[`SAFARI_7_0`](FeatureAll.md#safari_7_0)
|
|
1526
1568
|
|
|
1527
|
-
|
|
1569
|
+
***
|
|
1528
1570
|
|
|
1529
1571
|
### SAFARI\_7\_1
|
|
1530
1572
|
|
|
1531
|
-
|
|
1573
|
+
> **SAFARI\_7\_1**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1532
1574
|
|
|
1533
1575
|
Features available in Safari 7.1 and Safari 8.
|
|
1534
1576
|
|
|
1535
1577
|
#### Inherited from
|
|
1536
1578
|
|
|
1537
|
-
[FeatureAll](FeatureAll.md).[SAFARI_7_1](FeatureAll.md#safari_7_1)
|
|
1579
|
+
[`FeatureAll`](FeatureAll.md).[`SAFARI_7_1`](FeatureAll.md#safari_7_1)
|
|
1538
1580
|
|
|
1539
|
-
|
|
1581
|
+
***
|
|
1540
1582
|
|
|
1541
1583
|
### SAFARI\_9
|
|
1542
1584
|
|
|
1543
|
-
|
|
1585
|
+
> **SAFARI\_9**: [`PredefinedFeature`](PredefinedFeature.md)
|
|
1544
1586
|
|
|
1545
1587
|
Features available in Safari 9.
|
|
1546
1588
|
|
|
1547
1589
|
#### Inherited from
|
|
1548
1590
|
|
|
1549
|
-
[FeatureAll](FeatureAll.md).[SAFARI_9](FeatureAll.md#safari_9)
|
|
1591
|
+
[`FeatureAll`](FeatureAll.md).[`SAFARI_9`](FeatureAll.md#safari_9)
|
|
1550
1592
|
|
|
1551
|
-
|
|
1593
|
+
***
|
|
1552
1594
|
|
|
1553
1595
|
### SELF
|
|
1554
1596
|
|
|
1555
|
-
|
|
1597
|
+
> **SELF**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1556
1598
|
|
|
1557
1599
|
An alias for `ANY_WINDOW`.
|
|
1558
1600
|
|
|
1559
1601
|
#### Inherited from
|
|
1560
1602
|
|
|
1561
|
-
[FeatureAll](FeatureAll.md).[SELF](FeatureAll.md#self)
|
|
1603
|
+
[`FeatureAll`](FeatureAll.md).[`SELF`](FeatureAll.md#self)
|
|
1562
1604
|
|
|
1563
|
-
|
|
1605
|
+
***
|
|
1564
1606
|
|
|
1565
1607
|
### SELF\_OBJ
|
|
1566
1608
|
|
|
1567
|
-
|
|
1609
|
+
> **SELF\_OBJ**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1568
1610
|
|
|
1569
1611
|
Existence of the global object self whose string representation starts with "\[object ".
|
|
1570
1612
|
|
|
1571
|
-
|
|
1613
|
+
#### Remarks
|
|
1572
1614
|
|
|
1573
|
-
Available in Chrome, Edge, Firefox, Internet Explorer, Safari, Opera, and Android Browser. This feature is not available inside web workers in Safari 7.1+ before 10.
|
|
1615
|
+
Available in Chrome, Edge, Firefox, Internet Explorer, Safari, Opera, and Android Browser. This feature is not available inside web workers in Safari 7.1+ before 10.0.
|
|
1574
1616
|
|
|
1575
1617
|
#### Inherited from
|
|
1576
1618
|
|
|
1577
|
-
[FeatureAll](FeatureAll.md).[SELF_OBJ](FeatureAll.md#self_obj)
|
|
1619
|
+
[`FeatureAll`](FeatureAll.md).[`SELF_OBJ`](FeatureAll.md#self_obj)
|
|
1578
1620
|
|
|
1579
|
-
|
|
1621
|
+
***
|
|
1580
1622
|
|
|
1581
1623
|
### SHORT\_LOCALES
|
|
1582
1624
|
|
|
1583
|
-
|
|
1625
|
+
> **SHORT\_LOCALES**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1584
1626
|
|
|
1585
1627
|
Support for the two-letter locale name "ar" to format decimal numbers as Arabic numerals.
|
|
1586
1628
|
|
|
1587
|
-
|
|
1629
|
+
#### Remarks
|
|
1588
1630
|
|
|
1589
|
-
Available in Firefox, Internet Explorer 11, Safari 10
|
|
1631
|
+
Available in Firefox, Internet Explorer 11, Safari 10.0+ before 18, Android Browser 4.4, and Node.js 13+.
|
|
1590
1632
|
|
|
1591
1633
|
#### Inherited from
|
|
1592
1634
|
|
|
1593
|
-
[FeatureAll](FeatureAll.md).[SHORT_LOCALES](FeatureAll.md#short_locales)
|
|
1635
|
+
[`FeatureAll`](FeatureAll.md).[`SHORT_LOCALES`](FeatureAll.md#short_locales)
|
|
1594
1636
|
|
|
1595
|
-
|
|
1637
|
+
***
|
|
1596
1638
|
|
|
1597
1639
|
### STATUS
|
|
1598
1640
|
|
|
1599
|
-
|
|
1641
|
+
> **STATUS**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1600
1642
|
|
|
1601
1643
|
Existence of the global string status.
|
|
1602
1644
|
|
|
1603
|
-
|
|
1645
|
+
#### Remarks
|
|
1604
1646
|
|
|
1605
1647
|
Available in Chrome, Edge, Firefox, Internet Explorer, Safari, Opera, and Android Browser. This feature is not available inside web workers.
|
|
1606
1648
|
|
|
1607
1649
|
#### Inherited from
|
|
1608
1650
|
|
|
1609
|
-
[FeatureAll](FeatureAll.md).[STATUS](FeatureAll.md#status)
|
|
1651
|
+
[`FeatureAll`](FeatureAll.md).[`STATUS`](FeatureAll.md#status)
|
|
1610
1652
|
|
|
1611
|
-
|
|
1653
|
+
***
|
|
1612
1654
|
|
|
1613
1655
|
### UNDEFINED
|
|
1614
1656
|
|
|
1615
|
-
|
|
1657
|
+
> **UNDEFINED**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1616
1658
|
|
|
1617
1659
|
The property that Object.prototype.toString.call\(\) evaluates to "\[object Undefined\]".
|
|
1618
1660
|
|
|
1619
1661
|
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.
|
|
1620
1662
|
|
|
1621
|
-
|
|
1663
|
+
#### Remarks
|
|
1622
1664
|
|
|
1623
1665
|
Available in Chrome, Edge, Firefox, Internet Explorer, Safari, Opera, Android Browser 4.1+, and Node.js.
|
|
1624
1666
|
|
|
1625
1667
|
#### Inherited from
|
|
1626
1668
|
|
|
1627
|
-
[FeatureAll](FeatureAll.md).[UNDEFINED](FeatureAll.md#undefined)
|
|
1669
|
+
[`FeatureAll`](FeatureAll.md).[`UNDEFINED`](FeatureAll.md#undefined)
|
|
1628
1670
|
|
|
1629
|
-
|
|
1671
|
+
***
|
|
1630
1672
|
|
|
1631
1673
|
### V8\_SRC
|
|
1632
1674
|
|
|
1633
|
-
|
|
1675
|
+
> **V8\_SRC**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1634
1676
|
|
|
1635
1677
|
A string representation of native functions typical for the V8 engine.
|
|
1636
1678
|
|
|
1637
1679
|
Remarkable traits are the lack of line feed characters at the beginning and at the end of the string and the presence of a single whitespace before the "\[native code\]" sequence.
|
|
1638
1680
|
|
|
1639
|
-
|
|
1681
|
+
#### Remarks
|
|
1640
1682
|
|
|
1641
1683
|
Available in Chrome, Edge, Opera, Android Browser, and Node.js.
|
|
1642
1684
|
|
|
1643
1685
|
#### Inherited from
|
|
1644
1686
|
|
|
1645
|
-
[FeatureAll](FeatureAll.md).[V8_SRC](FeatureAll.md#v8_src)
|
|
1687
|
+
[`FeatureAll`](FeatureAll.md).[`V8_SRC`](FeatureAll.md#v8_src)
|
|
1646
1688
|
|
|
1647
|
-
|
|
1689
|
+
***
|
|
1648
1690
|
|
|
1649
1691
|
### WINDOW
|
|
1650
1692
|
|
|
1651
|
-
|
|
1693
|
+
> **WINDOW**: [`ElementaryFeature`](ElementaryFeature.md)
|
|
1652
1694
|
|
|
1653
1695
|
Existence of the global object self having the string representation "\[object Window\]".
|
|
1654
1696
|
|
|
1655
|
-
|
|
1697
|
+
#### Remarks
|
|
1656
1698
|
|
|
1657
1699
|
Available in Chrome, Edge, Firefox, Internet Explorer, Safari, Opera, and Android Browser 4.4. This feature is not available inside web workers.
|
|
1658
1700
|
|
|
1659
1701
|
#### Inherited from
|
|
1660
1702
|
|
|
1661
|
-
[FeatureAll](FeatureAll.md).[WINDOW](FeatureAll.md#window)
|
|
1703
|
+
[`FeatureAll`](FeatureAll.md).[`WINDOW`](FeatureAll.md#window)
|
|
1662
1704
|
|
|
1663
1705
|
## Methods
|
|
1664
1706
|
|
|
1665
|
-
### areCompatible
|
|
1707
|
+
### areCompatible()
|
|
1666
1708
|
|
|
1667
|
-
|
|
1709
|
+
> **areCompatible**(...`features`): `boolean`
|
|
1668
1710
|
|
|
1669
1711
|
Determines whether the specified features are mutually compatible.
|
|
1670
1712
|
|
|
1671
1713
|
#### Parameters
|
|
1672
1714
|
|
|
1673
|
-
|
|
1674
|
-
| :------ | :------ |
|
|
1675
|
-
| `...features` | [`FeatureElement`](../README.md#featureelement)[] |
|
|
1715
|
+
• ...**features**: [`FeatureElement`](../type-aliases/FeatureElement.md)[]
|
|
1676
1716
|
|
|
1677
1717
|
#### Returns
|
|
1678
1718
|
|
|
@@ -1681,7 +1721,7 @@ Determines whether the specified features are mutually compatible.
|
|
|
1681
1721
|
`true` if the specified features are mutually compatible; otherwise, `false`.
|
|
1682
1722
|
If less than two features are specified, the return value is `true`.
|
|
1683
1723
|
|
|
1684
|
-
|
|
1724
|
+
#### Example
|
|
1685
1725
|
|
|
1686
1726
|
```js
|
|
1687
1727
|
// false: only one of "V8_SRC" or "IE_SRC" may be available.
|
|
@@ -1693,11 +1733,11 @@ JScrewIt.Feature.areCompatible("V8_SRC", "IE_SRC")
|
|
|
1693
1733
|
JScrewIt.Feature.areCompatible(JScrewIt.Feature.DEFAULT, JScrewIt.Feature.FILL)
|
|
1694
1734
|
```
|
|
1695
1735
|
|
|
1696
|
-
|
|
1736
|
+
***
|
|
1697
1737
|
|
|
1698
|
-
### areEqual
|
|
1738
|
+
### areEqual()
|
|
1699
1739
|
|
|
1700
|
-
|
|
1740
|
+
> **areEqual**(...`features`): `boolean`
|
|
1701
1741
|
|
|
1702
1742
|
Determines whether all of the specified features are equivalent.
|
|
1703
1743
|
|
|
@@ -1706,9 +1746,7 @@ features, regardless of any other difference.
|
|
|
1706
1746
|
|
|
1707
1747
|
#### Parameters
|
|
1708
1748
|
|
|
1709
|
-
|
|
1710
|
-
| :------ | :------ |
|
|
1711
|
-
| `...features` | [`FeatureElementOrCompatibleArray`](../README.md#featureelementorcompatiblearray)[] |
|
|
1749
|
+
• ...**features**: [`FeatureElementOrCompatibleArray`](../type-aliases/FeatureElementOrCompatibleArray.md)[]
|
|
1712
1750
|
|
|
1713
1751
|
#### Returns
|
|
1714
1752
|
|
|
@@ -1717,7 +1755,7 @@ features, regardless of any other difference.
|
|
|
1717
1755
|
`true` if all of the specified features are equivalent; otherwise, `false`.
|
|
1718
1756
|
If less than two arguments are specified, the return value is `true`.
|
|
1719
1757
|
|
|
1720
|
-
|
|
1758
|
+
#### Example
|
|
1721
1759
|
|
|
1722
1760
|
```js
|
|
1723
1761
|
// false
|
|
@@ -1729,27 +1767,25 @@ JScrewIt.Feature.areEqual(JScrewIt.Feature.CHROME, JScrewIt.Feature.FF)
|
|
|
1729
1767
|
JScrewIt.Feature.areEqual("DEFAULT", [])
|
|
1730
1768
|
```
|
|
1731
1769
|
|
|
1732
|
-
|
|
1770
|
+
***
|
|
1733
1771
|
|
|
1734
|
-
### commonOf
|
|
1772
|
+
### commonOf()
|
|
1735
1773
|
|
|
1736
|
-
|
|
1774
|
+
> **commonOf**(...`features`): `null` \| [`CustomFeature`](CustomFeature.md)
|
|
1737
1775
|
|
|
1738
1776
|
Creates a new feature object equivalent to the intersection of the specified features.
|
|
1739
1777
|
|
|
1740
1778
|
#### Parameters
|
|
1741
1779
|
|
|
1742
|
-
|
|
1743
|
-
| :------ | :------ |
|
|
1744
|
-
| `...features` | [`FeatureElementOrCompatibleArray`](../README.md#featureelementorcompatiblearray)[] |
|
|
1780
|
+
• ...**features**: [`FeatureElementOrCompatibleArray`](../type-aliases/FeatureElementOrCompatibleArray.md)[]
|
|
1745
1781
|
|
|
1746
1782
|
#### Returns
|
|
1747
1783
|
|
|
1748
|
-
|
|
1784
|
+
`null` \| [`CustomFeature`](CustomFeature.md)
|
|
1749
1785
|
|
|
1750
1786
|
A feature object, or `null` if no arguments are specified.
|
|
1751
1787
|
|
|
1752
|
-
|
|
1788
|
+
#### Example
|
|
1753
1789
|
|
|
1754
1790
|
This will create a new feature object equivalent to [`NAME`](FeatureAll.md#name).
|
|
1755
1791
|
|
|
@@ -1757,35 +1793,35 @@ This will create a new feature object equivalent to [`NAME`](FeatureAll.md#name)
|
|
|
1757
1793
|
const newFeature = JScrewIt.Feature.commonOf(["ATOB", "NAME"], ["NAME", "SELF"]);
|
|
1758
1794
|
```
|
|
1759
1795
|
|
|
1760
|
-
This will create a new feature object equivalent to [FeatureConstructor.
|
|
1761
|
-
This is because both [`
|
|
1796
|
+
This will create a new feature object equivalent to [FeatureConstructor.ANY_WINDOW | `ANY_WINDOW`](FeatureAll.md#any_window).
|
|
1797
|
+
This is because both [`DOMWINDOW`](FeatureAll.md#domwindow) and [`WINDOW`](FeatureConstructor.md#window) imply [FeatureConstructor.ANY_WINDOW | `ANY_WINDOW`](FeatureAll.md#any_window).
|
|
1762
1798
|
|
|
1763
1799
|
```js
|
|
1764
|
-
const newFeature = JScrewIt.Feature.commonOf("
|
|
1800
|
+
const newFeature = JScrewIt.Feature.commonOf("DOMWINDOW", "WINDOW");
|
|
1765
1801
|
```
|
|
1766
1802
|
|
|
1767
|
-
|
|
1803
|
+
***
|
|
1768
1804
|
|
|
1769
|
-
### descriptionFor
|
|
1805
|
+
### descriptionFor()
|
|
1770
1806
|
|
|
1771
|
-
|
|
1807
|
+
> **descriptionFor**(`name`): `string`
|
|
1772
1808
|
|
|
1773
1809
|
Returns a short description of a predefined feature in plain English.
|
|
1774
1810
|
|
|
1775
1811
|
#### Parameters
|
|
1776
1812
|
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1813
|
+
• **name**: keyof [`FeatureAll`](FeatureAll.md)
|
|
1814
|
+
|
|
1815
|
+
A name or alias of a predefined feature.
|
|
1780
1816
|
|
|
1781
1817
|
#### Returns
|
|
1782
1818
|
|
|
1783
1819
|
`string`
|
|
1784
1820
|
|
|
1785
|
-
|
|
1821
|
+
#### Remarks
|
|
1786
1822
|
|
|
1787
1823
|
Different names or aliases of the same feature may have different descriptions.
|
|
1788
1824
|
|
|
1789
|
-
|
|
1825
|
+
#### Throws
|
|
1790
1826
|
|
|
1791
1827
|
An error is thrown if the specified argument is not a name or alias of a predefined feature.
|