Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
istanbul-reports /
lib /
lcov /
Delete
Unzip
Name
Size
Permission
Date
Action
index.js
909
B
-rw-r--r--
2023-08-21 05:40
Save
Rename
'use strict'; /* Copyright 2012-2015, Yahoo Inc. Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms. */ const { ReportBase } = require('istanbul-lib-report'); const LcovOnlyReport = require('../lcovonly'); const HtmlReport = require('../html'); class LcovReport extends ReportBase { constructor(opts) { super(); this.lcov = new LcovOnlyReport({ file: 'lcov.info', ...opts }); this.html = new HtmlReport({ subdir: 'lcov-report' }); } } ['Start', 'End', 'Summary', 'SummaryEnd', 'Detail'].forEach(what => { const meth = 'on' + what; LcovReport.prototype[meth] = function(...args) { const lcov = this.lcov; const html = this.html; if (lcov[meth]) { lcov[meth](...args); } if (html[meth]) { html[meth](...args); } }; }); module.exports = LcovReport;