/
var
/
www
/
greso.tech
/
server
/
nsm
/
node_modules
/
pngjs
/
coverage
/
lcov-report
/
/var/www/greso.tech/server/nsm/node_modules/pngjs/coverage/lcov-report
mkdir
upload
Name
Size
Mode
Actions
base.css
5462
0644
edit
dl
rm
bitmapper.js.html
35272
0644
edit
dl
rm
bitpacker.js.html
26997
0644
edit
dl
rm
block-navigation.js
2122
0644
edit
dl
rm
chunkstream.js.html
25531
0644
edit
dl
rm
constants.js.html
6490
0644
edit
dl
rm
crc.js.html
7347
0644
edit
dl
rm
favicon.png
540
0644
edit
dl
rm
filter-pack.js.html
23736
0644
edit
dl
rm
filter-parse-async.js.html
5587
0644
edit
dl
rm
filter-parse-sync.js.html
5250
0644
edit
dl
rm
filter-parse.js.html
24004
0644
edit
dl
rm
format-normaliser.js.html
13759
0644
edit
dl
rm
index.html
18773
0644
edit
dl
rm
interlace.js.html
13499
0644
edit
dl
rm
packer-async.js.html
8610
0644
edit
dl
rm
packer-sync.js.html
10369
0644
edit
dl
rm
packer.js.html
19095
0644
edit
dl
rm
paeth-predictor.js.html
4716
0644
edit
dl
rm
parser-async.js.html
23205
0644
edit
dl
rm
parser-sync.js.html
15603
0644
edit
dl
rm
parser.js.html
38742
0644
edit
dl
rm
png-sync.js.html
4309
0644
edit
dl
rm
png.js.html
28551
0644
edit
dl
rm
prettify.css
1060
0644
edit
dl
rm
prettify.js
27207
0644
edit
dl
rm
sort-arrow-sprite.png
209
0644
edit
dl
rm
sorter.js
4495
0644
edit
dl
rm
sync-inflate.js.html
24234
0644
edit
dl
rm
sync-reader.js.html
8436
0644
edit
dl
rm
Edit:
/var/www/greso.tech/server/nsm/node_modules/pngjs/coverage/lcov-report/block-navigation.js
(2122B)
/* eslint-disable */ var jumpToCode = (function init() { // Classes of code we would like to highlight in the file view var missingCoverageClasses = [".cbranch-no", ".cstat-no", ".fstat-no"]; // Elements to highlight in the file listing view var fileListingElements = ["td.pct.low"]; // We don't want to select elements that are direct descendants of another match var notSelector = ":not(" + missingCoverageClasses.join("):not(") + ") > "; // becomes `:not(a):not(b) > ` // Selecter that finds elements on the page to which we can jump var selector = fileListingElements.join(", ") + ", " + notSelector + missingCoverageClasses.join(", " + notSelector); // becomes `:not(a):not(b) > a, :not(a):not(b) > b` // The NodeList of matching elements var missingCoverageElements = document.querySelectorAll(selector); var currentIndex; function toggleClass(index) { missingCoverageElements.item(currentIndex).classList.remove("highlighted"); missingCoverageElements.item(index).classList.add("highlighted"); } function makeCurrent(index) { toggleClass(index); currentIndex = index; missingCoverageElements.item(index).scrollIntoView({ behavior: "smooth", block: "center", inline: "center", }); } function goToPrevious() { var nextIndex = 0; if (typeof currentIndex !== "number" || currentIndex === 0) { nextIndex = missingCoverageElements.length - 1; } else if (missingCoverageElements.length > 1) { nextIndex = currentIndex - 1; } makeCurrent(nextIndex); } function goToNext() { var nextIndex = 0; if ( typeof currentIndex === "number" && currentIndex < missingCoverageElements.length - 1 ) { nextIndex = currentIndex + 1; } makeCurrent(nextIndex); } return function jump(event) { switch (event.which) { case 78: // n case 74: // j goToNext(); break; case 66: // b case 75: // k case 80: // p goToPrevious(); break; } }; })(); window.addEventListener("keydown", jumpToCode);
Save
cmd:
run