min-heap-typed 1.40.0-rc → 1.40.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/.dependency-cruiser.js +422 -422
- package/.eslintrc.js +59 -59
- package/.prettierrc.js +14 -14
- package/README.md +20 -3
- package/coverage/clover.xml +11 -7
- package/coverage/coverage-final.json +95 -1
- package/coverage/coverage-summary.json +59 -2
- package/coverage/lcov-report/base.css +278 -99
- package/coverage/lcov-report/index.html +69 -65
- package/coverage/lcov-report/index.ts.html +36 -35
- package/coverage/lcov-report/sorter.js +15 -5
- package/dist/data-structures/binary-tree/avl-tree.d.ts +106 -0
- package/dist/data-structures/binary-tree/avl-tree.js +347 -0
- package/dist/data-structures/binary-tree/binary-indexed-tree.d.ts +149 -0
- package/dist/data-structures/binary-tree/binary-indexed-tree.js +269 -0
- package/dist/data-structures/binary-tree/binary-tree.d.ts +355 -0
- package/dist/data-structures/binary-tree/binary-tree.js +1115 -0
- package/dist/data-structures/binary-tree/bst.d.ts +167 -0
- package/dist/data-structures/binary-tree/bst.js +512 -0
- package/dist/data-structures/binary-tree/index.d.ts +7 -0
- package/dist/data-structures/binary-tree/index.js +23 -0
- package/dist/data-structures/binary-tree/rb-tree.d.ts +11 -0
- package/dist/data-structures/binary-tree/rb-tree.js +21 -0
- package/dist/data-structures/binary-tree/segment-tree.d.ts +67 -0
- package/dist/data-structures/binary-tree/segment-tree.js +180 -0
- package/dist/data-structures/binary-tree/tree-multiset.d.ts +126 -0
- package/dist/data-structures/binary-tree/tree-multiset.js +355 -0
- package/dist/data-structures/graph/abstract-graph.d.ts +313 -0
- package/dist/data-structures/graph/abstract-graph.js +884 -0
- package/dist/data-structures/graph/directed-graph.d.ts +194 -0
- package/dist/data-structures/graph/directed-graph.js +404 -0
- package/dist/data-structures/graph/index.d.ts +4 -0
- package/dist/data-structures/graph/index.js +20 -0
- package/dist/data-structures/graph/map-graph.d.ts +73 -0
- package/dist/data-structures/graph/map-graph.js +93 -0
- package/dist/data-structures/graph/undirected-graph.d.ts +120 -0
- package/dist/data-structures/graph/undirected-graph.js +239 -0
- package/dist/data-structures/hash/coordinate-map.d.ts +44 -0
- package/dist/data-structures/hash/coordinate-map.js +62 -0
- package/dist/data-structures/hash/coordinate-set.d.ts +36 -0
- package/dist/data-structures/hash/coordinate-set.js +52 -0
- package/dist/data-structures/hash/hash-map.d.ts +50 -0
- package/dist/data-structures/hash/hash-map.js +153 -0
- package/dist/data-structures/hash/hash-table.d.ts +103 -0
- package/dist/data-structures/hash/hash-table.js +236 -0
- package/dist/data-structures/hash/index.d.ts +6 -0
- package/dist/data-structures/hash/index.js +22 -0
- package/dist/data-structures/hash/tree-map.d.ts +2 -0
- package/dist/data-structures/hash/tree-map.js +6 -0
- package/dist/data-structures/hash/tree-set.d.ts +2 -0
- package/dist/data-structures/hash/tree-set.js +6 -0
- package/dist/data-structures/heap/heap.d.ts +235 -0
- package/dist/data-structures/heap/heap.js +515 -0
- package/dist/data-structures/heap/index.d.ts +3 -0
- package/dist/data-structures/heap/index.js +19 -0
- package/dist/data-structures/heap/max-heap.d.ts +15 -0
- package/dist/data-structures/heap/max-heap.js +26 -0
- package/dist/data-structures/heap/min-heap.d.ts +15 -0
- package/dist/data-structures/heap/min-heap.js +26 -0
- package/dist/data-structures/index.d.ts +11 -0
- package/dist/data-structures/index.js +27 -0
- package/dist/data-structures/linked-list/doubly-linked-list.d.ts +253 -0
- package/dist/data-structures/linked-list/doubly-linked-list.js +569 -0
- package/dist/data-structures/linked-list/index.d.ts +3 -0
- package/dist/data-structures/linked-list/index.js +19 -0
- package/dist/data-structures/linked-list/singly-linked-list.d.ts +232 -0
- package/dist/data-structures/linked-list/singly-linked-list.js +533 -0
- package/dist/data-structures/linked-list/skip-linked-list.d.ts +80 -0
- package/dist/data-structures/linked-list/skip-linked-list.js +187 -0
- package/dist/data-structures/matrix/index.d.ts +4 -0
- package/dist/data-structures/matrix/index.js +20 -0
- package/dist/data-structures/matrix/matrix.d.ts +21 -0
- package/dist/data-structures/matrix/matrix.js +28 -0
- package/dist/data-structures/matrix/matrix2d.d.ts +107 -0
- package/dist/data-structures/matrix/matrix2d.js +199 -0
- package/dist/data-structures/matrix/navigator.d.ts +52 -0
- package/dist/data-structures/matrix/navigator.js +106 -0
- package/dist/data-structures/matrix/vector2d.d.ts +200 -0
- package/dist/data-structures/matrix/vector2d.js +290 -0
- package/dist/data-structures/priority-queue/index.d.ts +3 -0
- package/dist/data-structures/priority-queue/index.js +19 -0
- package/dist/data-structures/priority-queue/max-priority-queue.d.ts +15 -0
- package/dist/data-structures/priority-queue/max-priority-queue.js +26 -0
- package/dist/data-structures/priority-queue/min-priority-queue.d.ts +15 -0
- package/dist/data-structures/priority-queue/min-priority-queue.js +26 -0
- package/dist/data-structures/priority-queue/priority-queue.d.ts +15 -0
- package/dist/data-structures/priority-queue/priority-queue.js +17 -0
- package/dist/data-structures/queue/deque.d.ts +161 -0
- package/dist/data-structures/queue/deque.js +264 -0
- package/dist/data-structures/queue/index.d.ts +2 -0
- package/dist/data-structures/queue/index.js +18 -0
- package/dist/data-structures/queue/queue.d.ts +122 -0
- package/dist/data-structures/queue/queue.js +187 -0
- package/dist/data-structures/stack/index.d.ts +1 -0
- package/dist/data-structures/stack/index.js +17 -0
- package/dist/data-structures/stack/stack.d.ts +64 -0
- package/dist/data-structures/stack/stack.js +94 -0
- package/dist/data-structures/tree/index.d.ts +1 -0
- package/dist/data-structures/tree/index.js +17 -0
- package/dist/data-structures/tree/tree.d.ts +8 -0
- package/dist/data-structures/tree/tree.js +40 -0
- package/dist/data-structures/trie/index.d.ts +1 -0
- package/dist/data-structures/trie/index.js +17 -0
- package/dist/data-structures/trie/trie.d.ts +79 -0
- package/dist/data-structures/trie/trie.js +251 -0
- package/dist/index.d.ts +3 -1
- package/dist/index.js +18 -4
- package/dist/interfaces/binary-tree.d.ts +7 -0
- package/dist/interfaces/binary-tree.js +2 -0
- package/dist/interfaces/doubly-linked-list.d.ts +1 -0
- package/dist/interfaces/doubly-linked-list.js +2 -0
- package/dist/interfaces/graph.d.ts +5 -0
- package/dist/interfaces/graph.js +2 -0
- package/dist/interfaces/heap.d.ts +1 -0
- package/dist/interfaces/heap.js +2 -0
- package/dist/interfaces/index.d.ts +8 -0
- package/dist/interfaces/index.js +24 -0
- package/dist/interfaces/navigator.d.ts +1 -0
- package/dist/interfaces/navigator.js +2 -0
- package/dist/interfaces/priority-queue.d.ts +1 -0
- package/dist/interfaces/priority-queue.js +2 -0
- package/dist/interfaces/segment-tree.d.ts +1 -0
- package/dist/interfaces/segment-tree.js +2 -0
- package/dist/interfaces/singly-linked-list.d.ts +1 -0
- package/dist/interfaces/singly-linked-list.js +2 -0
- package/dist/types/data-structures/binary-tree/avl-tree.d.ts +4 -0
- package/dist/types/data-structures/binary-tree/avl-tree.js +2 -0
- package/dist/types/data-structures/binary-tree/binary-indexed-tree.d.ts +1 -0
- package/dist/types/data-structures/binary-tree/binary-indexed-tree.js +2 -0
- package/dist/types/data-structures/binary-tree/binary-tree.d.ts +29 -0
- package/dist/types/data-structures/binary-tree/binary-tree.js +24 -0
- package/dist/types/data-structures/binary-tree/bst.d.ts +7 -0
- package/dist/types/data-structures/binary-tree/bst.js +2 -0
- package/dist/types/data-structures/binary-tree/index.d.ts +6 -0
- package/dist/types/data-structures/binary-tree/index.js +22 -0
- package/dist/types/data-structures/binary-tree/rb-tree.d.ts +8 -0
- package/dist/types/data-structures/binary-tree/rb-tree.js +8 -0
- package/dist/types/data-structures/binary-tree/segment-tree.d.ts +1 -0
- package/dist/types/data-structures/binary-tree/segment-tree.js +2 -0
- package/dist/types/data-structures/binary-tree/tree-multiset.d.ts +4 -0
- package/dist/types/data-structures/binary-tree/tree-multiset.js +2 -0
- package/dist/types/data-structures/graph/abstract-graph.d.ts +10 -0
- package/dist/types/data-structures/graph/abstract-graph.js +2 -0
- package/dist/types/data-structures/graph/directed-graph.d.ts +6 -0
- package/dist/types/data-structures/graph/directed-graph.js +9 -0
- package/dist/types/data-structures/graph/index.d.ts +3 -0
- package/dist/types/data-structures/graph/index.js +19 -0
- package/dist/types/data-structures/graph/map-graph.d.ts +1 -0
- package/dist/types/data-structures/graph/map-graph.js +2 -0
- package/dist/types/data-structures/graph/undirected-graph.d.ts +1 -0
- package/dist/types/data-structures/graph/undirected-graph.js +2 -0
- package/dist/types/data-structures/hash/coordinate-map.d.ts +1 -0
- package/dist/types/data-structures/hash/coordinate-map.js +2 -0
- package/dist/types/data-structures/hash/coordinate-set.d.ts +1 -0
- package/dist/types/data-structures/hash/coordinate-set.js +2 -0
- package/dist/types/data-structures/hash/hash-map.d.ts +1 -0
- package/dist/types/data-structures/hash/hash-map.js +2 -0
- package/dist/types/data-structures/hash/hash-table.d.ts +1 -0
- package/dist/types/data-structures/hash/hash-table.js +2 -0
- package/dist/types/data-structures/hash/index.d.ts +1 -0
- package/dist/types/data-structures/hash/index.js +2 -0
- package/dist/types/data-structures/hash/tree-map.d.ts +1 -0
- package/dist/types/data-structures/hash/tree-map.js +2 -0
- package/dist/types/data-structures/hash/tree-set.d.ts +1 -0
- package/dist/types/data-structures/hash/tree-set.js +2 -0
- package/dist/types/data-structures/heap/heap.d.ts +1 -0
- package/dist/types/data-structures/heap/heap.js +2 -0
- package/dist/types/data-structures/heap/index.d.ts +1 -0
- package/dist/types/data-structures/heap/index.js +17 -0
- package/dist/types/data-structures/heap/max-heap.d.ts +1 -0
- package/dist/types/data-structures/heap/max-heap.js +2 -0
- package/dist/types/data-structures/heap/min-heap.d.ts +1 -0
- package/dist/types/data-structures/heap/min-heap.js +2 -0
- package/dist/types/data-structures/index.d.ts +11 -0
- package/dist/types/data-structures/index.js +27 -0
- package/dist/types/data-structures/linked-list/doubly-linked-list.d.ts +1 -0
- package/dist/types/data-structures/linked-list/doubly-linked-list.js +2 -0
- package/dist/types/data-structures/linked-list/index.d.ts +2 -0
- package/dist/types/data-structures/linked-list/index.js +18 -0
- package/dist/types/data-structures/linked-list/singly-linked-list.d.ts +1 -0
- package/dist/types/data-structures/linked-list/singly-linked-list.js +2 -0
- package/dist/types/data-structures/linked-list/skip-linked-list.d.ts +1 -0
- package/dist/types/data-structures/linked-list/skip-linked-list.js +2 -0
- package/dist/types/data-structures/matrix/index.d.ts +1 -0
- package/dist/types/data-structures/matrix/index.js +17 -0
- package/dist/types/data-structures/matrix/matrix.d.ts +1 -0
- package/dist/types/data-structures/matrix/matrix.js +2 -0
- package/dist/types/data-structures/matrix/matrix2d.d.ts +1 -0
- package/dist/types/data-structures/matrix/matrix2d.js +2 -0
- package/dist/types/data-structures/matrix/navigator.d.ts +14 -0
- package/dist/types/data-structures/matrix/navigator.js +2 -0
- package/dist/types/data-structures/matrix/vector2d.d.ts +1 -0
- package/dist/types/data-structures/matrix/vector2d.js +2 -0
- package/dist/types/data-structures/priority-queue/index.d.ts +3 -0
- package/dist/types/data-structures/priority-queue/index.js +19 -0
- package/dist/types/data-structures/priority-queue/max-priority-queue.d.ts +1 -0
- package/dist/types/data-structures/priority-queue/max-priority-queue.js +2 -0
- package/dist/types/data-structures/priority-queue/min-priority-queue.d.ts +1 -0
- package/dist/types/data-structures/priority-queue/min-priority-queue.js +2 -0
- package/dist/types/data-structures/priority-queue/priority-queue.d.ts +1 -0
- package/dist/types/data-structures/priority-queue/priority-queue.js +2 -0
- package/dist/types/data-structures/queue/deque.d.ts +1 -0
- package/dist/types/data-structures/queue/deque.js +2 -0
- package/dist/types/data-structures/queue/index.d.ts +2 -0
- package/dist/types/data-structures/queue/index.js +18 -0
- package/dist/types/data-structures/queue/queue.d.ts +1 -0
- package/dist/types/data-structures/queue/queue.js +2 -0
- package/dist/types/data-structures/stack/index.d.ts +1 -0
- package/dist/types/data-structures/stack/index.js +17 -0
- package/dist/types/data-structures/stack/stack.d.ts +1 -0
- package/dist/types/data-structures/stack/stack.js +2 -0
- package/dist/types/data-structures/tree/index.d.ts +1 -0
- package/dist/types/data-structures/tree/index.js +17 -0
- package/dist/types/data-structures/tree/tree.d.ts +1 -0
- package/dist/types/data-structures/tree/tree.js +2 -0
- package/dist/types/data-structures/trie/index.d.ts +1 -0
- package/dist/types/data-structures/trie/index.js +17 -0
- package/dist/types/data-structures/trie/trie.d.ts +1 -0
- package/dist/types/data-structures/trie/trie.js +2 -0
- package/dist/types/helpers.d.ts +8 -0
- package/dist/types/helpers.js +9 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/index.js +19 -0
- package/dist/types/utils/index.d.ts +2 -0
- package/dist/types/utils/index.js +18 -0
- package/dist/types/utils/utils.d.ts +7 -0
- package/dist/types/utils/utils.js +2 -0
- package/dist/types/utils/validate-type.d.ts +19 -0
- package/dist/types/utils/validate-type.js +2 -0
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/index.js +17 -0
- package/dist/utils/utils.d.ts +20 -0
- package/dist/utils/utils.js +73 -0
- package/jest.config.js +6 -6
- package/package.json +2 -2
- package/src/data-structures/binary-tree/avl-tree.ts +350 -0
- package/src/data-structures/binary-tree/binary-indexed-tree.ts +306 -0
- package/src/data-structures/binary-tree/binary-tree.ts +1262 -0
- package/src/data-structures/binary-tree/bst.ts +522 -0
- package/src/data-structures/binary-tree/index.ts +7 -0
- package/src/data-structures/binary-tree/rb-tree.ts +358 -0
- package/src/data-structures/binary-tree/segment-tree.ts +190 -0
- package/src/data-structures/binary-tree/tree-multiset.ts +379 -0
- package/src/data-structures/graph/abstract-graph.ts +1000 -0
- package/src/data-structures/graph/directed-graph.ts +449 -0
- package/src/data-structures/graph/index.ts +4 -0
- package/src/data-structures/graph/map-graph.ts +106 -0
- package/src/data-structures/graph/undirected-graph.ts +259 -0
- package/src/data-structures/hash/coordinate-map.ts +63 -0
- package/src/data-structures/hash/coordinate-set.ts +52 -0
- package/src/data-structures/hash/hash-map.ts +185 -0
- package/src/data-structures/hash/hash-table.ts +268 -0
- package/src/data-structures/hash/index.ts +6 -0
- package/src/data-structures/hash/tree-map.ts +2 -0
- package/src/data-structures/hash/tree-set.ts +2 -0
- package/src/data-structures/heap/heap.ts +589 -0
- package/src/data-structures/heap/index.ts +3 -0
- package/src/data-structures/heap/max-heap.ts +26 -0
- package/src/data-structures/heap/min-heap.ts +26 -0
- package/src/data-structures/index.ts +11 -0
- package/src/data-structures/linked-list/doubly-linked-list.ts +605 -0
- package/src/data-structures/linked-list/index.ts +3 -0
- package/src/data-structures/linked-list/singly-linked-list.ts +576 -0
- package/src/data-structures/linked-list/skip-linked-list.ts +221 -0
- package/src/data-structures/matrix/index.ts +4 -0
- package/src/data-structures/matrix/matrix.ts +27 -0
- package/src/data-structures/matrix/matrix2d.ts +211 -0
- package/src/data-structures/matrix/navigator.ts +121 -0
- package/src/data-structures/matrix/vector2d.ts +315 -0
- package/src/data-structures/priority-queue/index.ts +3 -0
- package/src/data-structures/priority-queue/max-priority-queue.ts +25 -0
- package/src/data-structures/priority-queue/min-priority-queue.ts +25 -0
- package/src/data-structures/priority-queue/priority-queue.ts +16 -0
- package/src/data-structures/queue/deque.ts +282 -0
- package/src/data-structures/queue/index.ts +2 -0
- package/src/data-structures/queue/queue.ts +209 -0
- package/src/data-structures/stack/index.ts +1 -0
- package/src/data-structures/stack/stack.ts +102 -0
- package/src/data-structures/tree/index.ts +1 -0
- package/src/data-structures/tree/tree.ts +41 -0
- package/src/data-structures/trie/index.ts +1 -0
- package/src/data-structures/trie/trie.ts +262 -0
- package/src/index.ts +4 -1
- package/src/interfaces/binary-tree.ts +10 -0
- package/src/interfaces/doubly-linked-list.ts +1 -0
- package/src/interfaces/graph.ts +7 -0
- package/src/interfaces/heap.ts +1 -0
- package/src/interfaces/index.ts +8 -0
- package/src/interfaces/navigator.ts +1 -0
- package/src/interfaces/priority-queue.ts +1 -0
- package/src/interfaces/segment-tree.ts +1 -0
- package/src/interfaces/singly-linked-list.ts +1 -0
- package/src/types/data-structures/binary-tree/avl-tree.ts +5 -0
- package/src/types/data-structures/binary-tree/binary-indexed-tree.ts +1 -0
- package/src/types/data-structures/binary-tree/binary-tree.ts +31 -0
- package/src/types/data-structures/binary-tree/bst.ts +11 -0
- package/src/types/data-structures/binary-tree/index.ts +6 -0
- package/src/types/data-structures/binary-tree/rb-tree.ts +8 -0
- package/src/types/data-structures/binary-tree/segment-tree.ts +1 -0
- package/src/types/data-structures/binary-tree/tree-multiset.ts +6 -0
- package/src/types/data-structures/graph/abstract-graph.ts +11 -0
- package/src/types/data-structures/graph/directed-graph.ts +8 -0
- package/src/types/data-structures/graph/index.ts +3 -0
- package/src/types/data-structures/graph/map-graph.ts +1 -0
- package/src/types/data-structures/graph/undirected-graph.ts +1 -0
- package/src/types/data-structures/hash/coordinate-map.ts +1 -0
- package/src/types/data-structures/hash/coordinate-set.ts +1 -0
- package/src/types/data-structures/hash/hash-map.ts +1 -0
- package/src/types/data-structures/hash/hash-table.ts +1 -0
- package/src/types/data-structures/hash/index.ts +1 -0
- package/src/types/data-structures/hash/tree-map.ts +1 -0
- package/src/types/data-structures/hash/tree-set.ts +1 -0
- package/src/types/data-structures/heap/heap.ts +1 -0
- package/src/types/data-structures/heap/index.ts +1 -0
- package/src/types/data-structures/heap/max-heap.ts +1 -0
- package/src/types/data-structures/heap/min-heap.ts +1 -0
- package/src/types/data-structures/index.ts +11 -0
- package/src/types/data-structures/linked-list/doubly-linked-list.ts +1 -0
- package/src/types/data-structures/linked-list/index.ts +2 -0
- package/src/types/data-structures/linked-list/singly-linked-list.ts +1 -0
- package/src/types/data-structures/linked-list/skip-linked-list.ts +1 -0
- package/src/types/data-structures/matrix/index.ts +1 -0
- package/src/types/data-structures/matrix/matrix.ts +1 -0
- package/src/types/data-structures/matrix/matrix2d.ts +1 -0
- package/src/types/data-structures/matrix/navigator.ts +14 -0
- package/src/types/data-structures/matrix/vector2d.ts +1 -0
- package/src/types/data-structures/priority-queue/index.ts +3 -0
- package/src/types/data-structures/priority-queue/max-priority-queue.ts +1 -0
- package/src/types/data-structures/priority-queue/min-priority-queue.ts +1 -0
- package/src/types/data-structures/priority-queue/priority-queue.ts +1 -0
- package/src/types/data-structures/queue/deque.ts +1 -0
- package/src/types/data-structures/queue/index.ts +2 -0
- package/src/types/data-structures/queue/queue.ts +1 -0
- package/src/types/data-structures/stack/index.ts +1 -0
- package/src/types/data-structures/stack/stack.ts +1 -0
- package/src/types/data-structures/tree/index.ts +1 -0
- package/src/types/data-structures/tree/tree.ts +1 -0
- package/src/types/data-structures/trie/index.ts +1 -0
- package/src/types/data-structures/trie/trie.ts +1 -0
- package/src/types/helpers.ts +11 -0
- package/src/types/index.ts +3 -0
- package/src/types/utils/index.ts +2 -0
- package/src/types/utils/utils.ts +6 -0
- package/src/types/utils/validate-type.ts +35 -0
- package/src/utils/index.ts +1 -0
- package/src/utils/utils.ts +86 -0
- package/tsconfig.json +1 -2
|
@@ -1,90 +1,163 @@
|
|
|
1
1
|
body, html {
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
margin: 0;
|
|
3
|
+
padding: 0;
|
|
4
|
+
height: 100%;
|
|
4
5
|
}
|
|
6
|
+
|
|
5
7
|
body {
|
|
6
8
|
font-family: Helvetica Neue, Helvetica, Arial;
|
|
7
9
|
font-size: 14px;
|
|
8
|
-
color
|
|
10
|
+
color: #333;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.small {
|
|
14
|
+
font-size: 12px;
|
|
9
15
|
}
|
|
10
|
-
|
|
16
|
+
|
|
11
17
|
*, *:after, *:before {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
+
-webkit-box-sizing: border-box;
|
|
19
|
+
-moz-box-sizing: border-box;
|
|
20
|
+
box-sizing: border-box;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
h1 {
|
|
24
|
+
font-size: 20px;
|
|
25
|
+
margin: 0;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
h2 {
|
|
29
|
+
font-size: 14px;
|
|
30
|
+
}
|
|
31
|
+
|
|
18
32
|
pre {
|
|
19
33
|
font: 12px/1.4 Consolas, "Liberation Mono", Menlo, Courier, monospace;
|
|
20
34
|
margin: 0;
|
|
21
35
|
padding: 0;
|
|
22
36
|
-moz-tab-size: 2;
|
|
23
|
-
-o-tab-size:
|
|
37
|
+
-o-tab-size: 2;
|
|
24
38
|
tab-size: 2;
|
|
25
39
|
}
|
|
26
|
-
|
|
27
|
-
a
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
.
|
|
37
|
-
|
|
38
|
-
|
|
40
|
+
|
|
41
|
+
a {
|
|
42
|
+
color: #0074D9;
|
|
43
|
+
text-decoration: none;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
a:hover {
|
|
47
|
+
text-decoration: underline;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.strong {
|
|
51
|
+
font-weight: bold;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.space-top1 {
|
|
55
|
+
padding: 10px 0 0 0;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.pad2y {
|
|
59
|
+
padding: 20px 0;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.pad1y {
|
|
63
|
+
padding: 10px 0;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.pad2x {
|
|
67
|
+
padding: 0 20px;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.pad2 {
|
|
71
|
+
padding: 20px;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.pad1 {
|
|
75
|
+
padding: 10px;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.space-left2 {
|
|
79
|
+
padding-left: 55px;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.space-right2 {
|
|
83
|
+
padding-right: 20px;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.center {
|
|
87
|
+
text-align: center;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.clearfix {
|
|
91
|
+
display: block;
|
|
92
|
+
}
|
|
93
|
+
|
|
39
94
|
.clearfix:after {
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
95
|
+
content: '';
|
|
96
|
+
display: block;
|
|
97
|
+
height: 0;
|
|
98
|
+
clear: both;
|
|
99
|
+
visibility: hidden;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.fl {
|
|
103
|
+
float: left;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
@media only screen and (max-width: 640px) {
|
|
107
|
+
.col3 {
|
|
108
|
+
width: 100%;
|
|
109
|
+
max-width: 100%;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.hide-mobile {
|
|
113
|
+
display: none !important;
|
|
114
|
+
}
|
|
50
115
|
}
|
|
51
116
|
|
|
52
117
|
.quiet {
|
|
53
|
-
|
|
54
|
-
|
|
118
|
+
color: #7f7f7f;
|
|
119
|
+
color: rgba(0, 0, 0, 0.5);
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.quiet a {
|
|
123
|
+
opacity: 0.7;
|
|
55
124
|
}
|
|
56
|
-
.quiet a { opacity: 0.7; }
|
|
57
125
|
|
|
58
126
|
.fraction {
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
127
|
+
font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace;
|
|
128
|
+
font-size: 10px;
|
|
129
|
+
color: #555;
|
|
130
|
+
background: #E8E8E8;
|
|
131
|
+
padding: 4px 5px;
|
|
132
|
+
border-radius: 3px;
|
|
133
|
+
vertical-align: middle;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
div.path a:link, div.path a:visited {
|
|
137
|
+
color: #333;
|
|
66
138
|
}
|
|
67
139
|
|
|
68
|
-
div.path a:link, div.path a:visited { color: #333; }
|
|
69
140
|
table.coverage {
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
141
|
+
border-collapse: collapse;
|
|
142
|
+
margin: 10px 0 0 0;
|
|
143
|
+
padding: 0;
|
|
73
144
|
}
|
|
74
145
|
|
|
75
146
|
table.coverage td {
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
147
|
+
margin: 0;
|
|
148
|
+
padding: 0;
|
|
149
|
+
vertical-align: top;
|
|
79
150
|
}
|
|
151
|
+
|
|
80
152
|
table.coverage td.line-count {
|
|
81
153
|
text-align: right;
|
|
82
154
|
padding: 0 5px 0 20px;
|
|
83
155
|
}
|
|
156
|
+
|
|
84
157
|
table.coverage td.line-coverage {
|
|
85
158
|
text-align: right;
|
|
86
159
|
padding-right: 10px;
|
|
87
|
-
min-width:20px;
|
|
160
|
+
min-width: 20px;
|
|
88
161
|
}
|
|
89
162
|
|
|
90
163
|
table.coverage td span.cline-any {
|
|
@@ -92,6 +165,7 @@ table.coverage td span.cline-any {
|
|
|
92
165
|
padding: 0 5px;
|
|
93
166
|
width: 100%;
|
|
94
167
|
}
|
|
168
|
+
|
|
95
169
|
.missing-if-branch {
|
|
96
170
|
display: inline-block;
|
|
97
171
|
margin-right: 5px;
|
|
@@ -110,33 +184,70 @@ table.coverage td span.cline-any {
|
|
|
110
184
|
background: #ccc;
|
|
111
185
|
color: white;
|
|
112
186
|
}
|
|
187
|
+
|
|
113
188
|
.missing-if-branch .typ, .skip-if-branch .typ {
|
|
114
189
|
color: inherit !important;
|
|
115
190
|
}
|
|
191
|
+
|
|
116
192
|
.coverage-summary {
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
.
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
.
|
|
193
|
+
border-collapse: collapse;
|
|
194
|
+
width: 100%;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.coverage-summary tr {
|
|
198
|
+
border-bottom: 1px solid #bbb;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.keyline-all {
|
|
202
|
+
border: 1px solid #ddd;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.coverage-summary td, .coverage-summary th {
|
|
206
|
+
padding: 10px;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.coverage-summary tbody {
|
|
210
|
+
border: 1px solid #bbb;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.coverage-summary td {
|
|
214
|
+
border-right: 1px solid #bbb;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.coverage-summary td:last-child {
|
|
218
|
+
border-right: none;
|
|
219
|
+
}
|
|
220
|
+
|
|
126
221
|
.coverage-summary th {
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
222
|
+
text-align: left;
|
|
223
|
+
font-weight: normal;
|
|
224
|
+
white-space: nowrap;
|
|
130
225
|
}
|
|
131
|
-
|
|
132
|
-
.coverage-summary th.
|
|
226
|
+
|
|
227
|
+
.coverage-summary th.file {
|
|
228
|
+
border-right: none !important;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.coverage-summary th.pct {
|
|
232
|
+
}
|
|
233
|
+
|
|
133
234
|
.coverage-summary th.pic,
|
|
134
235
|
.coverage-summary th.abs,
|
|
135
236
|
.coverage-summary td.pct,
|
|
136
|
-
.coverage-summary td.abs {
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
237
|
+
.coverage-summary td.abs {
|
|
238
|
+
text-align: right;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.coverage-summary td.file {
|
|
242
|
+
white-space: nowrap;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.coverage-summary td.pic {
|
|
246
|
+
min-width: 120px !important;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.coverage-summary tfoot td {
|
|
250
|
+
}
|
|
140
251
|
|
|
141
252
|
.coverage-summary .sorter {
|
|
142
253
|
height: 10px;
|
|
@@ -145,44 +256,100 @@ table.coverage td span.cline-any {
|
|
|
145
256
|
margin-left: 0.5em;
|
|
146
257
|
background: url(sort-arrow-sprite.png) no-repeat scroll 0 0 transparent;
|
|
147
258
|
}
|
|
259
|
+
|
|
148
260
|
.coverage-summary .sorted .sorter {
|
|
149
261
|
background-position: 0 -20px;
|
|
150
262
|
}
|
|
263
|
+
|
|
151
264
|
.coverage-summary .sorted-desc .sorter {
|
|
152
265
|
background-position: 0 -10px;
|
|
153
266
|
}
|
|
154
|
-
|
|
267
|
+
|
|
268
|
+
.status-line {
|
|
269
|
+
height: 10px;
|
|
270
|
+
}
|
|
271
|
+
|
|
155
272
|
/* yellow */
|
|
156
|
-
.cbranch-no {
|
|
273
|
+
.cbranch-no {
|
|
274
|
+
background: yellow !important;
|
|
275
|
+
color: #111;
|
|
276
|
+
}
|
|
277
|
+
|
|
157
278
|
/* dark red */
|
|
158
|
-
.red.solid, .status-line.low, .low .cover-fill {
|
|
159
|
-
|
|
279
|
+
.red.solid, .status-line.low, .low .cover-fill {
|
|
280
|
+
background: #C21F39
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.low .chart {
|
|
284
|
+
border: 1px solid #C21F39
|
|
285
|
+
}
|
|
286
|
+
|
|
160
287
|
.highlighted,
|
|
161
|
-
.highlighted .cstat-no, .highlighted .fstat-no, .highlighted .cbranch-no{
|
|
162
|
-
|
|
288
|
+
.highlighted .cstat-no, .highlighted .fstat-no, .highlighted .cbranch-no {
|
|
289
|
+
background: #C21F39 !important;
|
|
163
290
|
}
|
|
291
|
+
|
|
164
292
|
/* medium red */
|
|
165
|
-
.cstat-no, .fstat-no, .cbranch-no, .cbranch-no {
|
|
293
|
+
.cstat-no, .fstat-no, .cbranch-no, .cbranch-no {
|
|
294
|
+
background: #F6C6CE
|
|
295
|
+
}
|
|
296
|
+
|
|
166
297
|
/* light red */
|
|
167
|
-
.low, .cline-no {
|
|
298
|
+
.low, .cline-no {
|
|
299
|
+
background: #FCE1E5
|
|
300
|
+
}
|
|
301
|
+
|
|
168
302
|
/* light green */
|
|
169
|
-
.high, .cline-yes {
|
|
303
|
+
.high, .cline-yes {
|
|
304
|
+
background: rgb(230, 245, 208)
|
|
305
|
+
}
|
|
306
|
+
|
|
170
307
|
/* medium green */
|
|
171
|
-
.cstat-yes {
|
|
308
|
+
.cstat-yes {
|
|
309
|
+
background: rgb(161, 215, 106)
|
|
310
|
+
}
|
|
311
|
+
|
|
172
312
|
/* dark green */
|
|
173
|
-
.status-line.high, .high .cover-fill {
|
|
174
|
-
|
|
313
|
+
.status-line.high, .high .cover-fill {
|
|
314
|
+
background: rgb(77, 146, 33)
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.high .chart {
|
|
318
|
+
border: 1px solid rgb(77, 146, 33)
|
|
319
|
+
}
|
|
320
|
+
|
|
175
321
|
/* dark yellow (gold) */
|
|
176
|
-
.status-line.medium, .medium .cover-fill {
|
|
177
|
-
|
|
322
|
+
.status-line.medium, .medium .cover-fill {
|
|
323
|
+
background: #f9cd0b;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
.medium .chart {
|
|
327
|
+
border: 1px solid #f9cd0b;
|
|
328
|
+
}
|
|
329
|
+
|
|
178
330
|
/* light yellow */
|
|
179
|
-
.medium {
|
|
331
|
+
.medium {
|
|
332
|
+
background: #fff4c2;
|
|
333
|
+
}
|
|
180
334
|
|
|
181
|
-
.cstat-skip {
|
|
182
|
-
|
|
183
|
-
|
|
335
|
+
.cstat-skip {
|
|
336
|
+
background: #ddd;
|
|
337
|
+
color: #111;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.fstat-skip {
|
|
341
|
+
background: #ddd;
|
|
342
|
+
color: #111 !important;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
.cbranch-skip {
|
|
346
|
+
background: #ddd !important;
|
|
347
|
+
color: #111;
|
|
348
|
+
}
|
|
184
349
|
|
|
185
|
-
span.cline-neutral {
|
|
350
|
+
span.cline-neutral {
|
|
351
|
+
background: #eaeaea;
|
|
352
|
+
}
|
|
186
353
|
|
|
187
354
|
.coverage-summary td.empty {
|
|
188
355
|
opacity: .5;
|
|
@@ -193,32 +360,44 @@ span.cline-neutral { background: #eaeaea; }
|
|
|
193
360
|
}
|
|
194
361
|
|
|
195
362
|
.cover-fill, .cover-empty {
|
|
196
|
-
|
|
197
|
-
|
|
363
|
+
display: inline-block;
|
|
364
|
+
height: 12px;
|
|
198
365
|
}
|
|
366
|
+
|
|
199
367
|
.chart {
|
|
200
|
-
|
|
368
|
+
line-height: 0;
|
|
201
369
|
}
|
|
370
|
+
|
|
202
371
|
.cover-empty {
|
|
203
372
|
background: white;
|
|
204
373
|
}
|
|
374
|
+
|
|
205
375
|
.cover-full {
|
|
206
376
|
border-right: none !important;
|
|
207
377
|
}
|
|
378
|
+
|
|
208
379
|
pre.prettyprint {
|
|
209
380
|
border: none !important;
|
|
210
381
|
padding: 0 !important;
|
|
211
382
|
margin: 0 !important;
|
|
212
383
|
}
|
|
213
|
-
|
|
214
|
-
.
|
|
384
|
+
|
|
385
|
+
.com {
|
|
386
|
+
color: #999 !important;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
.ignore-none {
|
|
390
|
+
color: #999;
|
|
391
|
+
font-weight: normal;
|
|
392
|
+
}
|
|
215
393
|
|
|
216
394
|
.wrapper {
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
395
|
+
min-height: 100%;
|
|
396
|
+
height: auto !important;
|
|
397
|
+
height: 100%;
|
|
398
|
+
margin: 0 auto -48px;
|
|
221
399
|
}
|
|
400
|
+
|
|
222
401
|
.footer, .push {
|
|
223
|
-
|
|
402
|
+
height: 48px;
|
|
224
403
|
}
|
|
@@ -1,116 +1,120 @@
|
|
|
1
|
-
|
|
2
1
|
<!doctype html>
|
|
3
2
|
<html lang="en">
|
|
4
3
|
|
|
5
4
|
<head>
|
|
6
5
|
<title>Code coverage report for All files</title>
|
|
7
|
-
<meta charset="utf-8"
|
|
8
|
-
<link
|
|
9
|
-
<link
|
|
10
|
-
<link rel="shortcut icon" type="image/x-icon"
|
|
11
|
-
<meta
|
|
6
|
+
<meta charset="utf-8"/>
|
|
7
|
+
<link href="prettify.css" rel="stylesheet"/>
|
|
8
|
+
<link href="base.css" rel="stylesheet"/>
|
|
9
|
+
<link href="favicon.png" rel="shortcut icon" type="image/x-icon"/>
|
|
10
|
+
<meta content="width=device-width, initial-scale=1" name="viewport"/>
|
|
12
11
|
<style type='text/css'>
|
|
13
12
|
.coverage-summary .sorter {
|
|
14
13
|
background-image: url(sort-arrow-sprite.png);
|
|
15
14
|
}
|
|
16
15
|
</style>
|
|
17
16
|
</head>
|
|
18
|
-
|
|
17
|
+
|
|
19
18
|
<body>
|
|
20
19
|
<div class='wrapper'>
|
|
21
20
|
<div class='pad1'>
|
|
22
21
|
<h1>All files</h1>
|
|
23
22
|
<div class='clearfix'>
|
|
24
|
-
|
|
23
|
+
|
|
25
24
|
<div class='fl pad1y space-right2'>
|
|
26
25
|
<span class="strong">100% </span>
|
|
27
26
|
<span class="quiet">Statements</span>
|
|
28
27
|
<span class='fraction'>3/3</span>
|
|
29
28
|
</div>
|
|
30
|
-
|
|
31
|
-
|
|
29
|
+
|
|
30
|
+
|
|
32
31
|
<div class='fl pad1y space-right2'>
|
|
33
32
|
<span class="strong">100% </span>
|
|
34
33
|
<span class="quiet">Branches</span>
|
|
35
34
|
<span class='fraction'>0/0</span>
|
|
36
35
|
</div>
|
|
37
|
-
|
|
38
|
-
|
|
36
|
+
|
|
37
|
+
|
|
39
38
|
<div class='fl pad1y space-right2'>
|
|
40
39
|
<span class="strong">100% </span>
|
|
41
40
|
<span class="quiet">Functions</span>
|
|
42
41
|
<span class='fraction'>2/2</span>
|
|
43
42
|
</div>
|
|
44
|
-
|
|
45
|
-
|
|
43
|
+
|
|
44
|
+
|
|
46
45
|
<div class='fl pad1y space-right2'>
|
|
47
46
|
<span class="strong">100% </span>
|
|
48
47
|
<span class="quiet">Lines</span>
|
|
49
48
|
<span class='fraction'>1/1</span>
|
|
50
49
|
</div>
|
|
51
|
-
|
|
52
|
-
|
|
50
|
+
|
|
51
|
+
|
|
53
52
|
</div>
|
|
54
53
|
<p class="quiet">
|
|
55
|
-
Press <em>n</em> or <em>j</em> to go to the next uncovered block, <em>b</em>, <em>p</em> or <em>k</em> for
|
|
54
|
+
Press <em>n</em> or <em>j</em> to go to the next uncovered block, <em>b</em>, <em>p</em> or <em>k</em> for
|
|
55
|
+
the previous block.
|
|
56
56
|
</p>
|
|
57
57
|
<template id="filterTemplate">
|
|
58
58
|
<div class="quiet">
|
|
59
59
|
Filter:
|
|
60
|
-
<input oninput="onInput()" type="search"
|
|
60
|
+
<input id="fileSearch" oninput="onInput()" type="search">
|
|
61
61
|
</div>
|
|
62
62
|
</template>
|
|
63
63
|
</div>
|
|
64
64
|
<div class='status-line high'></div>
|
|
65
65
|
<div class="pad1">
|
|
66
|
-
<table class="coverage-summary">
|
|
67
|
-
<thead>
|
|
68
|
-
<tr>
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
</tr>
|
|
80
|
-
</thead>
|
|
81
|
-
<tbody
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
66
|
+
<table class="coverage-summary">
|
|
67
|
+
<thead>
|
|
68
|
+
<tr>
|
|
69
|
+
<th class="file" data-col="file" data-fmt="html" data-html="true">File</th>
|
|
70
|
+
<th class="pic" data-col="pic" data-fmt="html" data-html="true" data-type="number"></th>
|
|
71
|
+
<th class="pct" data-col="statements" data-fmt="pct" data-type="number">Statements</th>
|
|
72
|
+
<th class="abs" data-col="statements_raw" data-fmt="html" data-type="number"></th>
|
|
73
|
+
<th class="pct" data-col="branches" data-fmt="pct" data-type="number">Branches</th>
|
|
74
|
+
<th class="abs" data-col="branches_raw" data-fmt="html" data-type="number"></th>
|
|
75
|
+
<th class="pct" data-col="functions" data-fmt="pct" data-type="number">Functions</th>
|
|
76
|
+
<th class="abs" data-col="functions_raw" data-fmt="html" data-type="number"></th>
|
|
77
|
+
<th class="pct" data-col="lines" data-fmt="pct" data-type="number">Lines</th>
|
|
78
|
+
<th class="abs" data-col="lines_raw" data-fmt="html" data-type="number"></th>
|
|
79
|
+
</tr>
|
|
80
|
+
</thead>
|
|
81
|
+
<tbody>
|
|
82
|
+
<tr>
|
|
83
|
+
<td class="file high" data-value="index.ts"><a href="index.ts.html">index.ts</a></td>
|
|
84
|
+
<td class="pic high" data-value="100">
|
|
85
|
+
<div class="chart">
|
|
86
|
+
<div class="cover-fill cover-full" style="width: 100%"></div>
|
|
87
|
+
<div class="cover-empty" style="width: 0%"></div>
|
|
88
|
+
</div>
|
|
89
|
+
</td>
|
|
90
|
+
<td class="pct high" data-value="100">100%</td>
|
|
91
|
+
<td class="abs high" data-value="3">3/3</td>
|
|
92
|
+
<td class="pct high" data-value="100">100%</td>
|
|
93
|
+
<td class="abs high" data-value="0">0/0</td>
|
|
94
|
+
<td class="pct high" data-value="100">100%</td>
|
|
95
|
+
<td class="abs high" data-value="2">2/2</td>
|
|
96
|
+
<td class="pct high" data-value="100">100%</td>
|
|
97
|
+
<td class="abs high" data-value="1">1/1</td>
|
|
98
|
+
</tr>
|
|
95
99
|
|
|
96
|
-
</tbody>
|
|
97
|
-
</table>
|
|
100
|
+
</tbody>
|
|
101
|
+
</table>
|
|
102
|
+
</div>
|
|
103
|
+
<div class='push'></div><!-- for sticky footer -->
|
|
104
|
+
</div><!-- /wrapper -->
|
|
105
|
+
<div class='footer quiet pad2 space-top1 center small'>
|
|
106
|
+
Code coverage generated by
|
|
107
|
+
<a href="https://istanbul.js.org/" rel="noopener noreferrer" target="_blank">istanbul</a>
|
|
108
|
+
at 2023-10-08T10:23:16.441Z
|
|
98
109
|
</div>
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
window.onload = function () {
|
|
109
|
-
prettyPrint();
|
|
110
|
-
};
|
|
111
|
-
</script>
|
|
112
|
-
<script src="sorter.js"></script>
|
|
113
|
-
<script src="block-navigation.js"></script>
|
|
114
|
-
</body>
|
|
110
|
+
<script src="prettify.js"></script>
|
|
111
|
+
<script>
|
|
112
|
+
window.onload = function () {
|
|
113
|
+
prettyPrint();
|
|
114
|
+
};
|
|
115
|
+
</script>
|
|
116
|
+
<script src="sorter.js"></script>
|
|
117
|
+
<script src="block-navigation.js"></script>
|
|
118
|
+
</body>
|
|
115
119
|
</html>
|
|
116
120
|
|