source: trip-planner-front/node_modules/core-js/internals/dom-iterables.js@ 188ee53

Last change on this file since 188ee53 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 753 bytes
Line 
1// iterable DOM collections
2// flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods
3module.exports = {
4 CSSRuleList: 0,
5 CSSStyleDeclaration: 0,
6 CSSValueList: 0,
7 ClientRectList: 0,
8 DOMRectList: 0,
9 DOMStringList: 0,
10 DOMTokenList: 1,
11 DataTransferItemList: 0,
12 FileList: 0,
13 HTMLAllCollection: 0,
14 HTMLCollection: 0,
15 HTMLFormElement: 0,
16 HTMLSelectElement: 0,
17 MediaList: 0,
18 MimeTypeArray: 0,
19 NamedNodeMap: 0,
20 NodeList: 1,
21 PaintRequestList: 0,
22 Plugin: 0,
23 PluginArray: 0,
24 SVGLengthList: 0,
25 SVGNumberList: 0,
26 SVGPathSegList: 0,
27 SVGPointList: 0,
28 SVGStringList: 0,
29 SVGTransformList: 0,
30 SourceBufferList: 0,
31 StyleSheetList: 0,
32 TextTrackCueList: 0,
33 TextTrackList: 0,
34 TouchList: 0
35};
Note: See TracBrowser for help on using the repository browser.