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.159
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 : diffStrings.js
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); exports.default = void 0; var _diffSequences = _interopRequireDefault(require('diff-sequences')); var _cleanupSemantic = require('./cleanupSemantic'); 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 diffStrings = (a, b) => { const isCommon = (aIndex, bIndex) => a[aIndex] === b[bIndex]; let aIndex = 0; let bIndex = 0; const diffs = []; const foundSubsequence = (nCommon, aCommon, bCommon) => { if (aIndex !== aCommon) { diffs.push( new _cleanupSemantic.Diff( _cleanupSemantic.DIFF_DELETE, a.slice(aIndex, aCommon) ) ); } if (bIndex !== bCommon) { diffs.push( new _cleanupSemantic.Diff( _cleanupSemantic.DIFF_INSERT, b.slice(bIndex, bCommon) ) ); } aIndex = aCommon + nCommon; // number of characters compared in a bIndex = bCommon + nCommon; // number of characters compared in b diffs.push( new _cleanupSemantic.Diff( _cleanupSemantic.DIFF_EQUAL, b.slice(bCommon, bIndex) ) ); }; (0, _diffSequences.default)(a.length, b.length, isCommon, foundSubsequence); // After the last common subsequence, push remaining change items. if (aIndex !== a.length) { diffs.push( new _cleanupSemantic.Diff(_cleanupSemantic.DIFF_DELETE, a.slice(aIndex)) ); } if (bIndex !== b.length) { diffs.push( new _cleanupSemantic.Diff(_cleanupSemantic.DIFF_INSERT, b.slice(bIndex)) ); } return diffs; }; var _default = diffStrings; exports.default = _default;
Close