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-lib-report /
Delete
Unzip
Name
Size
Permission
Date
Action
lib
[ DIR ]
drwxr-xr-x
2024-07-09 21:58
index.js
986
B
-rw-r--r--
2023-08-21 05:40
package.json
1.03
KB
-rw-r--r--
2023-08-21 05:40
pkgjs-lock.json
845
B
-rw-r--r--
2023-08-21 05:40
Save
Rename
/* Copyright 2012-2015, Yahoo Inc. Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms. */ 'use strict'; /** * @module Exports */ const Context = require('./lib/context'); const watermarks = require('./lib/watermarks'); const ReportBase = require('./lib/report-base'); module.exports = { /** * returns a reporting context for the supplied options * @param {Object} [opts=null] opts * @returns {Context} */ createContext(opts) { return new Context(opts); }, /** * returns the default watermarks that would be used when not * overridden * @returns {Object} an object with `statements`, `functions`, `branches`, * and `line` keys. Each value is a 2 element array that has the low and * high watermark as percentages. */ getDefaultWatermarks() { return watermarks.getDefault(); }, /** * Base class for all reports */ ReportBase };