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 /
nyc /
lib /
instrumenters /
Delete
Unzip
Name
Size
Permission
Date
Action
istanbul.js
1.31
KB
-rw-r--r--
2023-08-21 05:40
noop.js
449
B
-rw-r--r--
2023-08-21 05:40
Save
Rename
'use strict' function InstrumenterIstanbul (options) { const { createInstrumenter } = require('istanbul-lib-instrument') const convertSourceMap = require('convert-source-map') const instrumenter = createInstrumenter({ autoWrap: true, coverageVariable: '__coverage__', embedSource: true, compact: options.compact, preserveComments: options.preserveComments, produceSourceMap: options.produceSourceMap, ignoreClassMethods: options.ignoreClassMethods, esModules: options.esModules, parserPlugins: options.parserPlugins }) return { instrumentSync (code, filename, { sourceMap, registerMap }) { var instrumented = instrumenter.instrumentSync(code, filename, sourceMap) if (instrumented !== code) { registerMap() } // the instrumenter can optionally produce source maps, // this is useful for features like remapping stack-traces. if (options.produceSourceMap) { var lastSourceMap = instrumenter.lastSourceMap() /* istanbul ignore else */ if (lastSourceMap) { instrumented += '\n' + convertSourceMap.fromObject(lastSourceMap).toComment() } } return instrumented }, lastFileCoverage () { return instrumenter.lastFileCoverage() } } } module.exports = InstrumenterIstanbul