Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
753 B
36 lines
753 B
1 year ago
|
// iterable DOM collections
|
||
|
// flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods
|
||
|
module.exports = {
|
||
|
CSSRuleList: 0,
|
||
|
CSSStyleDeclaration: 0,
|
||
|
CSSValueList: 0,
|
||
|
ClientRectList: 0,
|
||
|
DOMRectList: 0,
|
||
|
DOMStringList: 0,
|
||
|
DOMTokenList: 1,
|
||
|
DataTransferItemList: 0,
|
||
|
FileList: 0,
|
||
|
HTMLAllCollection: 0,
|
||
|
HTMLCollection: 0,
|
||
|
HTMLFormElement: 0,
|
||
|
HTMLSelectElement: 0,
|
||
|
MediaList: 0,
|
||
|
MimeTypeArray: 0,
|
||
|
NamedNodeMap: 0,
|
||
|
NodeList: 1,
|
||
|
PaintRequestList: 0,
|
||
|
Plugin: 0,
|
||
|
PluginArray: 0,
|
||
|
SVGLengthList: 0,
|
||
|
SVGNumberList: 0,
|
||
|
SVGPathSegList: 0,
|
||
|
SVGPointList: 0,
|
||
|
SVGStringList: 0,
|
||
|
SVGTransformList: 0,
|
||
|
SourceBufferList: 0,
|
||
|
StyleSheetList: 0,
|
||
|
TextTrackCueList: 0,
|
||
|
TextTrackList: 0,
|
||
|
TouchList: 0
|
||
|
};
|