-
Notifications
You must be signed in to change notification settings - Fork 464
Expand file tree
/
Copy pathcomments.json
More file actions
61 lines (61 loc) · 2.54 KB
/
comments.json
File metadata and controls
61 lines (61 loc) · 2.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"interfaces": {
"interface": {
"Headers": {
"iterator": {
"comments": {
"comment": {
"entries": "Returns an iterator allowing to go through all key/value pairs contained in this object.",
"keys": "Returns an iterator allowing to go through all keys of the key/value pairs contained in this object.",
"values": "Returns an iterator allowing to go through all values of the key/value pairs contained in this object."
}
}
}
},
"FormData": {
"iterator": {
"comments": {
"comment": {
"entries": "Returns an array of key, value pairs for every entry in the list.",
"keys": "Returns a list of keys in the list.",
"values": "Returns a list of values in the list."
}
}
}
},
"NodeListOf": {
"iterator": {
"comments": {
"comment": {
"entries": "Returns an array of key, value pairs for every entry in the list.",
"keys": "Returns an list of keys in the list.",
"values": "Returns an list of values in the list."
}
}
}
},
"NodeList": {
"iterator": {
"comments": {
"comment": {
"entries": "Returns an array of key, value pairs for every entry in the list.",
"keys": "Returns an list of keys in the list.",
"values": "Returns an list of values in the list."
}
}
}
},
"URLSearchParams": {
"iterator": {
"comments": {
"comment": {
"entries": "Returns an array of key, value pairs for every entry in the search params.",
"keys": "Returns a list of keys in the search params.",
"values": "Returns a list of values in the search params."
}
}
}
}
}
}
}